// JavaScript Document
function doFocus(val, val2, theID)
{
	//alert(val);
	if (val == val2)
		{
		document.getElementById(theID).value = "";
		document.getElementById(theID).style.color = "#000";
		}
}
function doBlur(val, val2, theID)
{
	//alert(val);
	if (val == "")
		{
		document.getElementById(theID).value = val2;
		document.getElementById(theID).style.color = "#999";
		}
}

function popUp(url, x, y)
{
	window.open(url, 'Popup',  'width='+x+',height='+y+',toolbar=0,scrollbars=0,screenX=200,screenY=200,left=200,top=200');
}