function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;


function ClearForm() {
  document.userform.cust_acct.value= "";
}


function checkName() 
      {
           if (document.userform.cust_acct.value == "") {
                alert("Please provide an account name.");
                return false;
           } 
		   else if (document.userform.cust_acct.value == "Type here")
		   {
		   		alert("Please provide a valid account name.");
                return false;		   
			}
		   else
		   {
		   		return true;
		   }
      } // checkName()


function change(that, fgcolor, bgcolor){
that.style.color = fgcolor;
that.style.fontStyle = bgcolor;
}
