function ValidateSignup(form)
{
	if(isEmpty(form.fname, "Enter First Name.")) return false;
	if(isEmpty(form.lname, "Enter Last Name.")) return false;
/*	if(isEmpty(form.suffix, "Select Suffix.")) return false;
*/	if(isEmpty(form.ssn, "Enter SSN.")) return false;
	if(isEmpty(form.email, "Enter Email Address.")) return false;
	if(isNotValidEmail(form.email, "Enter a Valid Email Address")) return false;
	if(isEmpty(form.cemail, "Enter Confirm Email Address.")) return false;
	if(isNotValidEmail(form.cemail, "Enter a Valid Email Address")) return false;
	if(isNotSame(form.email, form.cemail, "Email Address do not match.")) return false;
	/*if(isEmpty(form.uname, "Enter Username!")) return false;*/
	if(isEmpty(form.pass, "Enter Password.")) return false;
	if(isEmpty(form.cpass, "Enter Confirm Password.")) return false;
	if(isNotSame(form.pass, form.cpass, "Password do not match!")) return false;
	if(isEmpty(form.birthday, "Enter Birthday.")) return false;
	if(isEmpty(form.gender, "Select Gender.")) return false;

	if(isEmpty(form.hphone, "Enter Home Phone Number.")) return false;
	if(isEmpty(form.mphone, "Enter Mobile Number.")) return false;
	
	if(isEmpty(form.haddress, "Enter Home Address.")) return false;

	if(isEmpty(form.street, "Enter Street.")) return false;
/*	if(isEmpty(form.apt, "Enter Apartment.")) return false;
*/
	if(isEmpty(form.hcity, "Enter city.")) return false;

	if(isEmpty(form.hstate, "Select State.")) return false;


	if(isEmpty(form.hcountry, "Enter Zip Code.")) return false;

	if(isEmpty(form.yadd, "Select Years at this address.")) return false;
	
	if(isEmpty(form.baddress, "Enter Billing Address.")) return false;

	if(isEmpty(form.bstreet, "Enter Billing Street.")) return false;
/*	if(isEmpty(form.bapt, "Enter Billing Apartment.")) return false;
*/
	if(isEmpty(form.city, "Enter city.")) return false;

	if(isEmpty(form.state, "Select State.")) return false;


	if(isEmpty(form.country, "Enter Zip Code.")) return false;
	
	if(isEmpty(form.ncard, "Enter Name on Card.")) return false;

	if(isEmpty(form.cardtype, "Select Card Type.")) return false;

	if(isEmpty(form.cardno, "Enter Card Number.")) return false;
	
	if(isEmpty(form.expdate, "Select Expiration Date.")) return false;

	if(isEmpty(form.expyear, "Select Expiration Year.")) return false;

	if(isEmpty(form.scode, "Enter Security Code.")) return false;
   /* if(validateEmptyCheck(form.agr, "You Must agree with the terms and conditions.")); return false; */

}


function Copy(form)
{
	if(form.chksame.checked == true)
	{
		form.baddress.value	= form.haddress.value
		form.bstreet.value	= form.street.value
		form.bapt.value	= form.apt.value
		form.city.value	= form.hcity.value
		form.state.value	= form.hstate.value
		form.country.value	= form.hcountry.value

	}
	else
	{
		form.baddress.value	= ""
		form.bstreet.value	= ""
		form.bapt.value	= ""
		form.city.value	= ""
		form.state.selected	= ""
		form.country.value	= ""
		
	}
		
}


