		var submitcount=0;
		
		function select_area1() {
		 document.two.YourName.select();
		 }
		 function select_area2() {
		 document.two.Organisation.select();
		 }
		 function select_area3() {
		 document.two.Email.select();
		 }
		 function select_area4() {
		 document.two.CountryCode.select();
		 }
		 function select_area5() {
		 document.two.PhoneNo.select();
		}
		function select_area6() {
		 document.two.Query.select();
		}
		
		function reset() {
		document.two.YourName.value=" Your Name.....";
        document.two.PhoneNo.value=" Your Phone Number.....";
        document.two.Email.value=" Your Email Address.....";
		document.two.Organisation.value=" Your Organisation (if any).....";
		document.two.Query.value="Please type here";
		}
		
		
		
		function checkFields() {     // field validation - checks if fields are filled in
		if (document.two.YourName.value=="Your Name.....")
		   {
		   alert("Please enter your name then re-submit this form.");
		   return false;
		   }
           
		 if  (document.two.Email.value=="Your Email Address.....")
			{
		   	alert("Please enter your email address then re-submit this form.");
			return false;
			 }
		   
        if  (document.two.Country.value=="Select Country")
			{
		   	alert("Please select your Country then re-submit this form.");
			return false;
			 }
		
		if  (document.two.Query.value=="Please type here")
			{
		   	alert("Please enter your Comment/Question then re-submit this form.");
			return false;
			 }
			 
		}
		
<!-- Copyright 2006 Bontrager Connection, LLC -->
function CookieTheValues() {
//
// Two personalization places in this function:
//

// 1.
// Between the quotes, specify the form name:

var FormName = "two";

// 2.
// Between the quotes, specify the cookie name:

var CookieName = "greeting";

//
// No other personalizations needed in this function.
//
var cookiestring = new Array();
var ilen = eval('document.'+FormName+'.length');
for (i = 0; i < ilen; i++) { 
   var n = eval('document.'+FormName+'.elements['+i+'].name');
   if(n.length == 0) { continue; }
   var fieldlen = eval('document.'+FormName+'.'+n+'.length');
   if(fieldlen > 0) { continue; }
   var v = eval('document.'+FormName+'.'+n+'.value');
   if(v.length == 0) { continue; }
   v = escape(v);
   cookiestring.push(n + '%09' + v);
   }
document.cookie = CookieName + '=' + cookiestring.join('%09%09') + '; path=/';
return true;
}

