function paymentContact(payment)
{
		 
	//NAME VALIDATION
	if(payment.name.value=="")
	{
		payment.name.focus() ;
		alert('Please Enter Your Name.');
		return false;
	}
	
	//PHONE VALIDATION
	if(payment.phone.value=="")
	{
		payment.phone.focus() ;
		alert('Please Enter Your Phone no.');
		return false;
	}
	
	// EMAIL VALIDATION
	if(payment.email.value=="")
	{
		payment.email.focus() ;
		alert('Please Enter Your Email Id.');
		return false;
	}

	if (!payment.email.value.match(/^[\w\.-]+@(?:[A-Za-z0-9-]+\.)*[A-Za-z0-9-]{1,}\.[a-z]{2,9}$/))
	{
		payment.email.focus();
		payment.email.value="";
		alert('Please Enter Valid Email Id.');
		return false;
	}

	//Product VALIDATION
	if (payment.interest.value == "")
	{
		payment.interest.focus() ;
		alert('Please Enter Products You Are Interests In.');
	return false ;
	}
	
//Product VALIDATION
	if (payment.question.value == "")
	{
		payment.question.focus() ;
		alert('Please Enter Your Question.');
	return false ;
	}
	


	SendEmailData(payment); 
	return false ;
}



function win1() {
    window.open("stores.html","Window1","menubar=no,width=460,height=360,toolbar=no,scrollbars=1");
}
