
function valContact()
{
	if (document.frmContactUs.name.value=="")
	{
	window.alert ("Please Enter Your Name !");
	document.frmContactUs.name.focus();
	return false;
	}
	if (document.frmContactUs.sname.value=="")
	{
	window.alert ("Please Enter Your Shop Name !");
	document.frmContactUs.sname.focus();
	return false;
	}
	if (document.frmContactUs.phone.value=="")
	{
	window.alert ("Please Enter Your Phone Number !");
	document.frmContactUs.phone.focus();
	return false;
	}

}

function demovalidate()
{
	if (document.frmDemo.fname.value=="")
	{
	window.alert ("Please Enter First Name !");
	document.frmDemo.fname.focus();
	return false;
	}
	if (document.frmDemo.lname.value=="")
	{
	window.alert ("Please Enter Last Name !");
	document.frmDemo.lname.focus();
	return false;
	}
	if (document.frmDemo.sname.value=="")
	{
	window.alert ("Please Enter Your Shop Name !");
	document.frmDemo.sname.focus();
	return false;
	}
	if (document.frmDemo.phone.value=="")
	{
	window.alert ("Please Enter Your Phone Number !");
	document.frmDemo.phone.focus();
	return false;
	}

}

