<!--

function validate_form(theform)
{

if (theform.address.value == '')
{
alert("Please enter the address.");
theform.address.focus();
return false;
}

if (theform.city.value == '')
{
alert("Please enter the city.");
theform.city.focus();
return false;
}

if (theform.zipcode.value == '')
{
alert("Please enter the zip code.");
theform.zipcode.focus();
return false;
}
}


function validate_rackform(theform)
{

if (theform.name.value == '')
{
alert("Please enter a contact name.");
theform.name.focus();
return false;
}

if (theform.organization.value == '')
{
alert("Please enter the organization name.");
theform.organization.focus();
return false;
}

if (theform.address.value == '')
{
alert("Please enter the address.");
theform.address.focus();
return false;
}

if (theform.city.value == '')
{
alert("Please enter the city.");
theform.city.focus();
return false;
}

if (theform.zipcode.value == '')
{
alert("Please enter the zip code.");
theform.zipcode.focus();
return false;
}

if (theform.email.value == '')
{
alert("Please enter email address.");
theform.email.focus();
return false;
}


}

function assesshelp_popup()
{
	var w = window.open("assesshelp.html","assesshelp","top=100, left=200, width=420, height=350");
	w.focus();
	return false;
}

//-->