function validateCheckout()
{
	if (hasFreight())
	{
		alert('Please get a freight estimate before checking out');
		return false;
	}
	goTo('check_out.php');
}
function hasFreight()
{
	return true;
}