function validation()
{
	frm = document.frm_payment;
	if(checkBlank(frm.txt_fname,"First Name")==false)
		return false;
	if(checkBlank(frm.txt_lname,"Last Name")==false)
		return false;
	if(checkBlank(frm.txt_mail,"E-Mail")==false)
		return false;
	if(ValidateEmail(frm.txt_mail,"Subscriber E-Mail")==false)
		return false;
	if(checkBlank(frm.txt_ph1,"Phone1")==false)
		return false;
	if(checkBlank(frm.txt_add1,"Address1")==false)
		return false;
	
	document.frm_payment.submit();
	return true;
	
}