//<!--
/*
	Validation 3
	============
	Billing Check
	Numero de teléfono es requerido
*/
function checkInfo()
{
	if(is_this_being_used == true)
	{
		return false;
	}

	if(checkQuantity() == false)
	{
		return false;	
	}
	
	var_checkFName = checkFName(document.getElementById("bill_fname"));
	if(var_checkFName != undefined)
	{
		alert('Nombre es invalido');
		return false;
	}
	
	var_checkLName = checkLName(document.getElementById("bill_lname"));
	if(var_checkLName != undefined)
	{
		alert('Apellido es invalido');
		return false;
	}

	var_checkAddress = checkAddress(document.getElementById("bill_address1"));
	if(var_checkAddress != undefined)
	{
		alert('Direccion es invalido');
		return false;
	}
	
	var_checkCity = checkCity(document.getElementById("bill_city"));
	if(var_checkCity != undefined)
	{
		alert('Ciudad es invalido');
		return false;
	}

	var_checkState = checkState2(document.getElementById("bill_state"));
	if(var_checkState != undefined)
	{
		alert('Estado es invalido');
		return false;
	}

	var_checkZip = checkZip(document.getElementById("bill_zip"), document.getElementById("bill_country"))
	if(var_checkZip != undefined)
	{
		alert('Codigo Postal es invalido');
		return false;
	}
	
	var_checkEmail = checkEmail(document.getElementById("bill_email"))
	if(var_checkEmail != undefined)
	{
		alert('Correo electronico es invalido');
		return false;
	}
	
	var_checkPhoneNR = checkPhoneNR(document.getElementById("bill_phone1"), document.getElementById("bill_phone2"), document.getElementById("bill_phone3"));
	if(var_checkPhoneNR != undefined)
	{
		alert('Telefono es invalido');
		return false;
	}
	
	var_checkCC = checkCC(document.getElementById("cc_type"), document.getElementById("cc_date"), document.getElementById("cc_year"), document.getElementById("cc_num"));
	if(var_checkCC != undefined)
	{
		alert('Informacion de la tarjeta de credito es invalido');
		return false;
	}
}
//-->