function submitForm1()
	{
	document.form1.submit();
	}
	
function checkCheckBox(f){
	if (f.terms.checked == false )
	{
	alert('Please check the box to confirm that you accept the terms and conditions of sale.');
	return false;
	}else
	return true;
	}
