En este caso...
//LA FUNCION LLAMADA POR EL BOTON "ENVIAR"
<script languaje="javascript">
function verificarCasilla(form)
{
if (form.acepto.checked == false){
alert("Debes aceptar los términos del contrato antes de continuar");
form.acepto.focus();
return true;
}
else{
var accion = "index.html";
window.document.form1.action = accion;
window.document.form1.target="_self";
self.document.form1.submit();
}
}
</script>
NO SERIA ACTION EN VES DE ACCION
var accion = "index.html";
Pork Me Da Un error en el explorer abajo me dice k tiene un error el error es el siguiente.