function validate_tgc_form() {

if (document.tgc.fname.value=="Name:" || document.tgc.fname.value=="" )
   {
		alert("Name is Missing!");
		document.tgc.fname.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;
		}
		
			

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


		
		
		if (document.tgc.mobile.value=="Mobile:" || document.tgc.mobile.value=="")
   {
		alert("mobile No is Missing!");
		document.tgc.mobile.focus()
		return false;
   }
   
   
   
  

			
	
			if (document.tgc.requirements.value=="Requirements:" || document.tgc.requirements.value=="" )
   {
		alert("Requirements is Missing!");
		document.tgc.requirements.focus()
		return false;
   }
	
	

   
}

function client()
{

document.write('<div style="font-family: Arial, Helvetica, sans-serif; color:#faf2d9; font-size:14px; padding:15px; text-align:justify; line-height:16px;">Hi, <br /><br />We must commend you for the wonderful trip which you arranged for us. Thank you for your patience and great service regarding my travel arrangement. I willll definitely recommend you to my friends and family for your pleasant service.</div><div style="float:right; padding:0px 10px 5px 0; font-family:Georgia, Times New Roman, Times, serif; color:#FFFFFF">Regards<br />Jack Howard</div>');
}

