// JavaScript Document

<!--
function checkData() {
	var f1 = document.forms[0];
	var wm = "Ocurrio el siguiente Error :\n\r\n";
	var noerror = 1;
	var t1 = f1.sumay;
	if (t1.value == "" || t1.value == " "  || t1.value != "4") {
		wm += "Ponga el resultado de la suma\r\n";
		noerror = 0;
	}
	
	if (noerror == 0) {
		alert(wm);
		return false;
	}
	else return true;
}
//-->


