// JavaScript Document
function switchText(object, baseText, eventName) {
	if (eventName == "blur") {
		if (object.value == "") {
			object.value = baseText;
		}
	} else {
		if (object.value == baseText) {
			object.value = "";
		}
	}
}

function popUpInCenter(URL,width,height) {
	day = new Date();
	id = day.getTime();
	var x = ((screen.width/2)-(width/2));
	var y = ((screen.height/2)-(height/2));
	  
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left=" + x + ",top=" + y +"');");
}