
	<!--
	
	// Start hiding JavaScript code from old browsers.
	
	
	// Pulldown menu validator:
	
function Validate(theForm)
{
	var Errors = "";
	if(document.forms['theForm'].Name.value == "")
	{ Errors = Errors + "+ Your Name:\n"; }
	if(document.forms['theForm'].Email.value=="")
	{ Errors = Errors + "+ Your Email Address:\n"; }
	else if(document.forms['theForm'].Email.value.indexOf("@") == -1 || document.forms['theForm'].Email.value.indexOf(".") == -1) { Errors = Errors + "+ All e-mail addresses must have an @ symbol\n    and a period. Example: bob@aol.com\n"; }
	if(document.forms['theForm'].CompanyName.value == "")
	{ Errors = Errors + "+ Company Name\n"; }
	if(document.forms['theForm'].Address.value=="")
	{ Errors = Errors + "+ Address\n"; }
	if(document.forms['theForm'].City.value=="")
	{ Errors = Errors + "+ City\n"; }
	if (document.forms['theForm'].State.selectedIndex == 0)
	{ Errors = Errors + "+ State\n"; }
	if (document.forms['theForm'].State.selectedIndex == 1)
	{ Errors = Errors + "+ State\n"; }
	if(document.forms['theForm'].Zip.value=="")
	{ Errors = Errors + "+ Zip Code\n"; }
	if(document.forms['theForm'].Format[0].checked==false && document.forms['theForm'].Format[1].checked==false)
	{ Errors = Errors + "+ VHS or DVD Format\n"; }
	
	if(Errors != "")
	{ alert("Please fill in the following fields:\n---------------------------------------------------\n" + Errors); }
	else
	{ document.forms['theForm'].submit(); }
}
	//-->
	