function opennew(url,x,y) {
	newwindow = window.open (url, "","location=0,status=0,scrollbars=1,width=" + x + ",height=" + y);
	newwindow.moveTo(100,100);
}

function chfocus(el,op,text1,text2,altcolor1,altcolor2) {
	if (op) {
		if (el.value == text1) {
			el.value = text2;
		}
		el.style.color = altcolor2;	
	} else {
		if (el.value == text2) {
			el.value = text1;
			el.style.color = altcolor1;	
		}	
	}
}
