<!--
if (document.images) {  
		arImageSrc = new Array ( "nv_arrow_off", "nv_arrow_on" );

        arImageList = new Array ();
		for (counter in arImageSrc) {
				arImageList[counter] = new Image();
				arImageList[counter].src = "images/" + arImageSrc[counter] + ".gif";
		}
}
function rollOver(imageName,state) {
		if (document.images) { 
			document.images[imageName].src = "images/" + state + ".gif";
		}
}
function FrmValidLogIn(theForm) {
 if (theForm.email.value =="")  {
    alert("Please enter Email.");
    theForm.email.focus();
    return (false);
 }
 if (theForm.password.value =="") {
    alert("Please enter a Password.");
    theForm.password.focus();
    return (false);
  }
}
function FrmValidGet(theForm) {
 if (theForm.email.value =="")  {
    alert("Please enter Email.");
    theForm.email.focus();
    return (false);
 }

}
//-->
