// JavaScript Document
function chkinp(form){	
	if (form.Name.value==""){
	alert("Sorry, Please fill your Name")
	form.Name.focus();
	return false;
	}else if (form.Email.value==""||form.Email.value.indexOf('@')<0){
	alert("Sorry, Please fill your Email Address")
	form.Email.focus();
	return false;
	}else if (form.CardType.value==""){
	alert("Sorry, Please fill your Your Credit Card Type")
	form.CardType.focus();
	return false;
	}else if (form.CardNum.value==""){
	alert("Sorry, Please fill your Credit Card Number")
	form.CardNum.focus();
	return false;
	}else if (form.CardExp.value==""){
	alert("Sorry, Please fill The Expiry Date of your Credit Card")
	form.CardExp.focus();
	return false;
	}
	
}