<!-- 
	function Form_Validator(theForm) 
	{ 
	
	  if (theForm.Name.value == "") 
	  { 
	    alert("Please enter a value for the \"Name\" field."); 
	    theForm.Name.focus(); 
	    return (false); 
	  } 
	  
	  if (theForm.Country.value == "") 
	  { 
	    alert("Please enter a value for the \"Country\" field."); 
	    theForm.Country.focus(); 
	    return (false); 
	  } 
	  	  
	  if (theForm.Email.value == "") 
	  { 
	    alert("Please enter a value for the \"Email\" field."); 
	    theForm.Email.focus(); 
	    return (false); 
	  } 
	 
		invalidChars = " /:,;" 
		for (i=0; i<invalidChars.length; i++) 
		{ 
			badChar = invalidChars.charAt(i) 
			if (theForm.Email.value.indexOf(badChar,0) != -1) 
			{ 
			    alert("Please enter a valid address in the \"Email\" field."); 
				theForm.Email.focus(); 
				return (false); 
			} 
		} 
				 
		atPos = theForm.Email.value.indexOf("@",1) 
		if (atPos == -1) 
		{ 
		    alert("Please enter a valid address in the \"Email\" field."); 
			theForm.Email.focus(); 
			return (false); 
		} 
				 
		if (theForm.Email.value.indexOf("@",atPos+1) != -1) 
		{ 
		    alert("Please enter a valid address in the \"Email\" field."); 
			theForm.Email.focus(); 
			return (false); 
		} 
				 
		periodPos = theForm.Email.value.indexOf(".",atPos) 
		if (periodPos == -1) 
		{ 
		    alert("Please enter a valid address in the \"Email\" field."); 
			theForm.Email.focus(); 
			return (false); 
		} 
				 
		if (periodPos+3 > theForm.Email.value.length)	
		{ 
		    alert("Please enter a valid address in the \"Email\" field."); 
			theForm.Email.focus(); 
			return (false); 
		}
	  

	  if (theForm.Phone_Country_Code.value == "") 
	  { 
	    alert("Please enter a value for the \"Country Code\" field."); 
	    theForm.Phone_Country_Code.focus(); 
	    return (false); 
	  } 
	  
	  if (theForm.Phone_Area_Code.value == "") 
	  { 
	    alert("Please enter a value for the \"Area Code\" field."); 
	    theForm.Phone_Area_Code.focus(); 
	    return (false); 
	  } 
	  
	  if (theForm.phone_no.value == "") 
	  { 
	    alert("Please enter a value for the \"Phone no\" field."); 
	    theForm.phone_no.focus(); 
	    return (false); 
	  } 	 

 } 
//--> 