function Validate(){	
	var strMsg = new String(); 
	strMsg = "All fields must be completed\n\nThank You !"
	if(document.formmail.name.value == "" || document.formmail.phone.value == "" || document.formmail.email.value == "" || document.formmail.message.value == "")
		{
			//Display message
			alert(strMsg);
			if (document.formmail.name.value == "")			//Name field not populated
				{
					document.formmail.name.focus();			//Set Focus
					return;
				}
			if (document.formmail.phone.value == "") 		//Phone field not populated
				{
					document.formmail.phone.focus();		//Set Focus
					return;		
				}					
			if (document.formmail.email.value == "") 		//Email field not populated
				{
					document.formmail.email.focus();		//Set Focus
					return;		
				}
			if (document.formmail.message.value == "") 		//Message field not populated
				{
					document.formmail.message.focus();		//Set Focus
					return;		
				}
		}
	else
		{
			document.formmail.submit();						//Compulsory fields populated so submit
		}
	}	
