// JavaScript Document
<!--
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 check_form(f) { // f is the form (passed using the this keyword)

if(f.userid.value.length < 1){
alert("Please enter user name.");
f.userid.focus(); 
if(document.all || document.getElementByID){
f.userid.style.background = "yellow";
}
return false;
}

if(f.password.value.length < 1){
alert("Please enter Password");
f.password.focus(); // put the prompt in the name field 
// if the browser is Netscape 6 or IE
if(document.all || document.getElementByID){
// change the color of text field
f.password.style.background = "yellow";
}
return false;
}

}

function blank_txt()
{
if(form1.Website_url.value == "Type in your Web Site Address Here" ){
form1.Website_url.value=""; 
}
}
//-->