function viewCart()
{
	$('cartForm').submit();
}

function checkCode(theForm)
{
	var input = theForm['discount_code'];
	var rate1 = theForm['discount_rate'];
	var rate2 = theForm['discount_rate2'];
	
	if(input && $F(input).toUpperCase() == 'fghytf')
	{
		if(rate1)
		{
			rate1.value=15;
		}
		
		if(rate2)
		{
			rate2.value=15;
		}
	}
	else
	{
		if(rate1)
		{
			rate1.value=0;
		}
		
		if(rate2)
		{
			rate2.value=0;
		}
	}
	
	theForm.submit();
}
