<!--

var Roll=new Array();

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;
        }
}


Roll["a"] = new RollOver("images/on_01.gif");
Roll["b"] = new RollOver("images/on_02.gif");
Roll["c"] = new RollOver("images/on_03.gif");
Roll["d"] = new RollOver("images/on_04.gif");
Roll["e"] = new RollOver("images/on_05.gif");




function Validate_Form()
{




	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter your CONTACT NAME to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
		if (document.form.strPhoneNumber.value.length == 0)
	{
		alert('You must enter your PHONE NUMBER to continue.');
		document.form.strPhoneNumber.focus();
		return(false);
	}
	
	
	
	
	return (true);
} 
//-->



























