// JavaScript Document
function blurthis(x,z){
		y=document.getElementById(x);
		if(y.value==""){
				y.value=z;
			}
		y.style.color="#666666";
		y.style.backgroundColor="#ffffff";

}

function focusthis(x,z){
		y=document.getElementById(x);
		if(y.value==z){
				y.value="";
			}
		y.style.color="#666666";
		y.style.backgroundColor="#ffffcc";
	
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}