function openLinkWindow(URL)
  {
   linkWindow=window.open(URL,"linkInfo","width=1100,height=1100,dependent=yes,resizable=no,scrollbars=yes,toolbar=no,menubar=no");
    linkWindow.focus();
   
  } 

function ContactFormValidate()
{
	if (document.ContactForm.customername.value == "")
	{
		alert("Your Name is required");
		document.ContactForm.customername.focus();
		return false;

	}
      if (document.ContactForm.customeremail.value == "")
	{
		alert("Your E-Mail Address is required");
		document.ContactForm.customeremail.focus();
		return false;
	}
	

}

function ContactFormFValidate()
{
	if (document.ContactForm.fromname.value == "")
	{
		alert("Your Name is required");
		document.ContactForm.fromname.focus();
		return false;

	}
   
      if (document.ContactForm.fromemail.value == "")
	{
		alert("Your E-Mail Address is required");
		document.ContactForm.fromemail.focus();
		return false;

	}
      
      if (document.ContactForm.fmname.value == "")
	{
		alert("Full Name of Birth is required");
		document.ContactForm.fmname.focus();
		return false;

	}

}