var h = new Date();
var cuenta=0
var texto="|======|  "+ h.getHours() +":"+ h.getMinutes() +" " +"  |======|  Hecho Por SyCtel, Visitenos www.syctel.com "
var txt="      ------      El Destape - Periodismo al servicio de la Justicia y la Verdad        --------                ";
var espera=100;
var refresco=null;
function rotulo_title() {
        document.title=txt;
        txt=txt.substring(1,txt.length)+txt.charAt(0);
        refresco=setTimeout("rotulo_title()",espera);}
 function scrolltexto () {
 window.status=texto.substring (cuenta,texto.length)+  texto.substring(0,cuenta)
 if (cuenta <texto.length){ cuenta ++
 }
 else{
 cuenta=0
 }
 setTimeout("scrolltexto()",150)
 }
 scrolltexto ()
 rotulo_title();
function verificar()
{
if (document.form1.nombre.value!="")
     if(document.form1.apellido.value!="")
        if(document.form1.email.value.indexOf('@', 0) != -1)
               document.form1.submit();
         else
              {alert("El E-mail no es Valido!!!!");
                document.form1.email.focus();
               }
	  else
        {alert("Ingrese su Apellido");
         document.form1.apellido.focus();
	    }

else
    {alert("Ingrese su nombre");
     document.form1.nombre.focus();
    }
}





