
<!-- Hide this code from non-JavaScript browsers

var Roll=new Array();


Roll["a"] = new RollOver("images/button1on.gif");
Roll["b"] = new RollOver("images/button2on.gif");



function RollOver(on_url)
{       this.on        = new Image();
        this.on.src    = on_url;
}

function flip ()
{       if(arguments.length==1) arguments[1]=arguments[0];
        for(i=0 ; i<arguments.length ; i+=2){
                temp = document.images[arguments[i]].src;
                document.images[arguments[i]].src  = Roll[arguments[i+1]].on.src;
                Roll[arguments[i+1]].on.src = temp;
        }
}

	function Validate_Form()
{
	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter A CONTACT PERSON to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
	if (document.form.strPhoneNumber.value.length == 0)
	{
		alert('You must enter A PHONE NUMBER to continue.');
		document.form.strPhoneNumber.focus();
		return(false);
	}
	if (document.form.strEmailAddress.value.length == 0)
	{
		alert('You must enter AN E-MAIL ADDRESS to continue.');
		document.form.strEmailAddress.focus();
		return(false);
	}
  if (document.form.sc1.value != document.form.sc2.value)
	{
		alert('You must enter the security code to continue.');
		document.form.sc1.focus();
		return(false);
	}
	return (true);
} 
// End hiding -->






































