function validatecontactsubmit(thisform)
{
if (thisform.Name.value=="")
{alert('please enter the Your name to continue');
thisform.Name.focus();
return false;}
if (thisform.Address.value=="")
{alert('please enter your street address to continue');
thisform.Address.focus();
return false;}
if (thisform.City.value=="")
{alert('please enter your city to continue');
thisform.City.focus();
return false;}
if (thisform.State.value=="")
{alert('please enter your state to continue');
thisform.State.focus();
return false;}
if (thisform.Zip.value=="")
{alert('please enter your zip to continue');
thisform.Zip.focus();
return false;}
if (thisform.Country.value=="")
{alert('please enter your country to continue');
thisform.Country.focus();
return false;}
if (thisform.Tel.value=="")
{alert('please enter your telephone number to continue');
thisform.Tel.focus();
return false;}
if (thisform.Email.value=="")
{alert('please enter your email address to continue');
thisform.Email.focus();
return false;}
if (thisform.Comments.value=="")
{alert('please enter your Comments to continue');
thisform.Comments.focus();
return false;}
}

