function formchk () {
	var inp = document.getElementById('termscheckbox');	
	if (inp) {
		if (inp.checked == false) {
			alert("Please Select the Shipping Agreement Checkbox to Add this Item to the Cart!");
			return false;
		}
	}
	return true;
}