function submitFullBalance()
{	
	document.CardsForm.action = "default.asp"
	document.CardsForm.submit();
}
 function cc()
 {
 	if (!(document.CardsForm.credit.checked) && !(document.CardsForm.gold.checked) && !(document.CardsForm.platinum.checked))
	{
		alert("Please select a card type you are interested in!");
		document.CardsForm.credit.focus(); 
		return false;
	}
	
	if (!(document.CardsForm.fullbalance[0].checked) && !(document.CardsForm.fullbalance[1].checked))
	{
		alert("Please state if you will be paying your card off each month!")
		document.CardsForm.fullbalance[0].focus(); 
		return false;
	}
	
	
	if ((document.CardsForm.fullbalance[0].checked) || (document.CardsForm.fullbalance[1].checked))
	{
		var feature = (document.CardsForm.feature.selectedIndex) ;
		var feature2 = (document.CardsForm.feature2.selectedIndex);
				
		if (document.CardsForm.feature.selectedIndex == 0)
		{
			alert("Please select the most important feature you look for when selecting a card!")
			document.CardsForm.feature.focus();
			return false;
		}
		
		if (document.CardsForm.feature2.selectedIndex == 0)
		{
			alert("Please select an important feature you look for when selecting a card!")
			document.CardsForm.feature2.focus();
			return false;
		}
		if (feature ==  feature2)
		{
			alert("The features for your card must be different!");
			document.CardsForm.feature2.focus();
			return false;
		}
	}
	
		if (!isFieldValidAndFocus(document.CardsForm.Email, 'Email', true, 'Email address'))
		{
			return false;
		}
	
	if ((!(document.CardsForm.Adverse[0].checked)) && (!(document.CardsForm.Adverse[1].checked)))
	{
		alert("Please state if you have any history of adverse credit!")
		document.CardsForm.Adverse[0].focus();
		return false;
	}
	return true;
 }

