function SaS(checkout)
{
	if ( checkout.Same.checked )
	{
	checkout.ShippingFName.value    = checkout.BillingFName.value;
	checkout.ShippingLName.value    = checkout.BillingLName.value;
	checkout.ShippingCompany.value  = checkout.BillingCompany.value;
	checkout.ShippingAddress.value  = checkout.BillingAddress.value;
	checkout.ShippingAddress2.value = checkout.BillingAddress2.value;
	checkout.ShippingCity.value     = checkout.BillingCity.value;
	checkout.ShippingState.value    = checkout.BillingState.value;
	checkout.ShippingZip.value      = checkout.BillingZip.value;
	checkout.ShippingPhone.value    = checkout.BillingPhone.value;
	checkout.ShippingExt.value      = checkout.BillingExt.value;
	}
	else
	{
	checkout.ShippingFName.value    = "";
	checkout.ShippingLName.value    = "";
	checkout.ShippingCompany.value = "";
	checkout.ShippingAddress.value = "";
	checkout.ShippingAddress2.value = "";
	checkout.ShippingCity.value    = "";
	checkout.ShippingState.value   = "0";
	checkout.ShippingZip.value     = "";
	checkout.ShippingPhone.value   = "";
	checkout.ShippingExt.value     = "";

	}
	
	
}	

function submitForm()
{
	document.checkout.submit();
}

function toggle(a, id, id2){
	var anch = document.getElementById(a);
	var object = document.getElementById(id);
	var object2 = document.getElementById(id2);
	if(object.className == 'hide'){
		object.className = 'show';
		object2.className = 'show';
		anch.innerHTML = '[hide]';
	}else{
		object.className = 'hide';
		object2.className = 'hide';
		anch.innerHTML = '[show]';
	}
	}