// JavaScript Document
function  resetvalues()
{
empfrm.reset();

}
function check()
{

	
	if (document.empfrm.name.value =="")
	{
	window.alert("You missed Name");
	document.empfrm.name.focus();
	return false;
	}
	
	if (document.empfrm.country.value =="")
	{
	window.alert("You missed Country");
	document.empfrm.country.focus();
	return false;
	}
	if (document.empfrm.state.value =="")
	{
	window.alert("You missed State");
	document.empfrm.state.focus();
	return false;
	}
	if (document.empfrm.phone.value =="")
	{
	window.alert("You missed Telephone");
	document.empfrm.phone.focus();
	return false;
	}
	if (document.empfrm.email.value =="")
	{
	window.alert("You missed Email");
	document.empfrm.email.focus();
	return false;
	}
	return true;
}
function  resetvalues1()
{
contactfm.reset();

}


function check1()
{

	
	if (document.contactfm.name.value =="")
	{
	window.alert("You missed Name");
	document.contactfm.name.focus();
	return false;
	}
	
	if (document.contactfm.city.value =="")
	{
	window.alert("You missed City");
	document.contactfm.city.focus();
	return false;
	}
	if (document.contactfm.state.value =="")
	{
	window.alert("You missed State");
	document.contactfm.state.focus();
	return false;
	}
	if (document.contactfm.zip.value =="")
	{
	window.alert("You missed Zip/Postal Code");
	document.contactfm.zip.focus();
	return false;
	}
	if (document.contactfm.phone.value =="")
	{
	window.alert("You missed Telephone");
	document.contactfm.phone.focus();
	return false;
	}
	if (document.contactfm.email.value =="")
	{
	window.alert("You missed Email");
	document.contactfm.email.focus();
	return false;
	}
	return true;
}
