function validate_swiss_form() {
	
		if (document.swiss.fname.value.search (/\w/) < 0) 
		{
		alert("First Name is Missing!");
		document.swiss.fname.focus()
		return false;
		}
		if (document.swiss.address.value.search (/\w/) < 0) 
		{
		alert("Address is Missing!");
		document.swiss.address.focus()
		return false;
		}
		if (document.swiss.country.value.search (/\w/) < 0) 
		{
		alert("Select Country of Residence!");
		document.swiss.country.focus()
		return false;
		}
		if (document.swiss.email.value.search (/[a-zA-Z0-9_\-]+\@[a-zA-Z0-9_\-]+\.[a-zA-Z0-9_\-]+/) < 0) 
		{
		alert("Email is Missing!");
		document.swiss.email.focus()
		return false;
		}
		
		if (document.swiss.phone_number.value.search (/\w/) < 0) 
		{
		alert("Phone Number Should be Numeric!");
		document.swiss.phone_number.focus()
		return false;
		}
		
		if (document.swiss.adults.value.search (/\w/) < 0) 
		{
		alert("Number of Persons Should be Numeric!");
		document.swiss.adults.focus()
		return false;
		}
	}
	
	
	

function validate_tgc_form() {

if (document.tgc.fname.value=="First Name" || document.tgc.fname.value=="" )
   {
		alert("First Name is Missing!");
		document.tgc.fname.focus()
		return false;
   }

if (document.tgc.lname.value=="Last Name" || document.tgc.lname.value=="" )
   {
		alert("Last Name is Missing!");
		document.tgc.lname.focus()
		return false;
   }

if (document.tgc.contact_no.value=="Contact No." || document.tgc.contact_no.value=="" )
   {
		alert("Contact Number is Missing!");
		document.tgc.contact_no.focus()
		return false;
   }

if (document.tgc.country.value=="" )
   {
		alert("Country Name is Missing!");
		document.tgc.country.focus()
		return false;
   }


if (document.tgc.email.value.search (/[a-zA-Z0-9_\-]+\@[a-zA-Z0-9_\-]+\.[a-zA-Z0-9_\-]+/) < 0) 
{
alert("Email is Missing!");
document.tgc.email.focus()
return false;
}

}

