// JavaScript Document
<!--
function validate() {
	var error_string = "";
	
	try
  {
  //Run some code here
  
	
	if (window.document.Cont_For.name.value == "") {
		error_string += "Please enter your Name\n";
		}
	if (window.document.Cont_For.email.value == "") {
		error_string += "Please enter your Email Address\n";
		}	
	if (window.document.Cont_For.country.value == "") {
		error_string += "Please enter the Country you live in \n";
		}
	if (window.document.Cont_For.region.value == "") {
		error_string += "Please enter your Region \n";
		}
	if (window.document.Cont_For.msg.value == "") {
		error_string += "Please discribe your enquiry in more detail. \n";
		}
	if (error_string == "") {
		return true;
		} else {
		error_string = "* Please Provide Required Fields: \n\n" + error_string;
		alert(error_string);
		return false;
		}
		
	}
	catch(err)
  	{
  	alert("script failed");
  	}
}
-->
