function hoverItemOn(x,txt) 
{
   	x.style.backgroundColor = '#336699';
   	x.style.color = '#ffffff';
	if (x.value.toUpperCase()==txt.toUpperCase())
		{
			x.value = ""
		}
		else
		{
			x.select();
		}
}

function hoverItemOff(x,txt)
{
	if (x.value == "") x.value = txt;
   	x.style.backgroundColor = '#FFFFFF';
   	x.style.color = '#000000';
}

function popUp(URL)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=250,height=400,left=500,top=0');");
}
function popUp1(URL)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=690,height=200,left=90,top=0');");
}
function openNewWindow(url)
{    	
	window.open(url,'newPage','scrollbars=no,resizable=no,width=400,height=400');
}