function mostrar(id){

    id = "coment"+id;

    if($(id).style["display"]=="none")

    {

        $(id).style["display"]=""

    }else{

        $(id).style["display"]="none"

    }

}





function validarCaptcha(sesion, usuario, autor, comentario){

    var error=0;

    if(usuario != sesion){

        alert("Si usted es un robot spammer:\nPor favor retírese de mi sitio, que el señor del hosting me lo va a suspender.\nSi usted no es un robot:\n Le pido que haga la cuentita que se le muestra en verde y la ingrese en el cuadro de texto. No es difícil, usted puede...");

        error=1;

    }

    if(autor==""){

        alert("El nombre es obligatorio");

        error =1;

    }

    if(comentario==""){

        alert("El comentario es obligatorio");

        error =1;

    }

    return error==0;

}


function fTimer(){
	$("header").style["backgroundPosition"] = "180px "+ha+"px";
}

function inicioTimer(){
	setInterval(
	function(){
	    // si baja
	    if(direccion=="b"){
		    h=h-step;
		    if(h < -800)direccion="s";
	    }
	    // si sube
	    if(direccion=="s"){
		    h=h+step;
		    if(h>0)direccion="b";
	    }
	    ha=String(h);
	    fTimer();
	    }
    , 10 );
}
