//for drop down menus in IE
sfHover = function() {
	var sfEls = document.getElementById("gold_tab").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
	
	
//for log in form	
function Validator1(theForm) {
if (theForm.LOGON_USERNAME.value == "") {
	alert("Please enter your email address.");
	theForm.LOGON_USERNAME.focus();
	return (false);
}
	
if (theForm.LOGON_PASSWORD.value == "")  {
	alert("Please enter your password.");
	theForm.LOGON_PASSWORD.focus();
	return (false);
}
		
return (true);
}

//for register page 1
function Validator(theForm)
{

	if (theForm.user_lead.value == "0")
		{
		alert("Please indicate how you've heard about us.");
		theForm.user_lead.focus();
		return (false);
		}

		return (true);
}
