function validateform()

	if ( !document.orderform.agree.checked )
	{
			alert (" You Must agree to our Terms and Conditions. ");
			return false;

	}
	else
	{
		alert ("Wat");
	}

}

