function FrontPage_Form1_Validator(theForm)
  {
   if (theForm.txtYourName.value == "")
  	{
    alert("Thank you for your enquiry. Please Enter Your name.");
    theForm.txtYourName.focus();
    return (false);
  	}
  	if (theForm.txtYourEmailAddress.value == "")
  	{
    alert("Thank you for your enquiry. Please Enter Your e-mail address.");
    theForm.txtYourEmailAddress.focus();
    return (false);
  	}
  	if (theForm.txtYourTelNo.value == "")
  	{
    alert("Thank you for your enquiry. Please Enter Your Telephone Number.");
    theForm.txtYourTelNo.focus();
    return (false);
  	}
  	 if (theForm.txtYourSubject.value == "")
  	{
    alert("Thank you for your enquiry. Please Enter the Subject.");
    theForm.txtYourSubject.focus();
    return (false);
  	}
	if (theForm.txtYourEnquiry.value == "")
  	{
    alert("Thank you for your enquiry. Please Enter Your Enquiry.");
    theForm.txtYourEnquiry.focus();
    return (false);
  	}
  	
  	if (theForm.txtFindUs.selectedIndex == 0)
  	{
    alert("Thank you for your enquiry. Please Enter How You Found Us");
    theForm.txtFindUs.focus();
    return (false);
  	}

  	 return (true);
  
  }
  
  function fillthescreen()
		{
		winH = windowHeight(); //This returns the screen heigth
		heightNeeded=winH-45; //We need to substract the footer height
		if( typeof( window.innerWidth ) != 'number' ) 
		{ //Explorer doesn't recognize minHeight
			document.getElementById('side1').style.height=heightNeeded+'px'; //So, we use height (and explroer bug)
		}
		document.getElementById('side1').style.minHeight=heightNeeded+'px'; //For every other browser, we use minHeight
		}
 
	function windowHeight(){
		var alto= 0;
		if( typeof( window.innerWidth ) == 'number' ) {
			alto= window.innerHeight;
		} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
			alto= document.documentElement.clientHeight;
		} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
			alto= document.body.clientHeight;
		}
		return alto;
	}
  
  
 
  
  
 