

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



<!-- Hide script from older browsers
	function validEmail(email) 
	{
		invalidChars = " /:,;"
		if (email == "") 
		{
			return false
		}
		for (i=0; i<invalidChars.length; i++) 
			{
			badChar = invalidChars.charAt(i)
			if (email.indexOf(badChar,0) != -1) 
				{
				return false
				}
			}
		atPos = email.indexOf("@",1)
		if (atPos == -1) 
			{
			return false
			}
		if (email.indexOf("@",atPos+1) != -1) 
			{
			return false
			}
		periodPos = email.indexOf(".",atPos)
		if (periodPos == -1) 
			{
			return false
			}
		if (periodPos+3 > email.length)	
			{
			return false
			}
		return true
	}

	function validName(inName) 
	{
	  if (inName == "") 
	  {
	  	return false
	  }
	  return true
	}

//For Contact 
	function submitIt(Form) 
	{
		if (!validName(Form.Name.value)) 
		{
		  	alert("Please enter your name.")
			Form.Name.focus()
			Form.Name.select()
			return false
		}
		if (!validEmail(Form.Email.value)) 
		{
			alert("Invalid email address.")
			Form.Email.focus()
			Form.Email.select()
			return false
		}
			
		return true
	}



// End hiding script -->

//Code for Clearing the Signup form field
function clearfield(){
if (document.NewsletterForm.Email.value == "Your Email")
	document.NewsletterForm.Email.value = " ";
}

<!-- Begin
//Begin table mouseover code
ON = "Images/on.gif"  
OFF = "Images/off.gif"
ON2 = "Images/leftbutton-on.gif"  
OFF2 = "Images/leftbutton-off.gif" 
 
function imgover(imgname){
     imgname.src = ON
}
function imgout(imgname){
     imgname.src = OFF
}
function imgover2(imgname){
     imgname.src = ON2
}
function imgout2(imgname){
     imgname.src = OFF2
}
//End table mouseover code


//  End -->

