// JavaScript Document
<!-- se oculta la informaci&oacute;n de los navegadores antiguos

            //Specify the marquee's width (in pixels)
         var marqueewidth=105;
            //Specify the marquee's height
         var marqueeheight=200;
            //Specify the marquee's scroll speed (larger is faster)
         var speed=3;
           //Specify the marquee contents

var marqueecontents='<p class=normal><b>A V I S  O S:</b><\/p>';
    marqueecontents+='<p class=normal><font color=red><b>Convocatoria:</b></font><br>Programa de Becas Universitarias 2012<br><a href="/docs/becas_universitarias2012.pdf"><img src="img/becas2012.gif" width="100" height="80" alt="Becas"><\/a><\/p>';
    marqueecontents+='<p class=normal><b>Convocatoria:</b><br>Certamen Emprendedores 2012<br><a href="/docs/conv_emprendedores2012.pdf"><img src="img/certamen_emprendedores.png" width="100" height="80" alt="Emprendedores"><\/a><\/p>';
    marqueecontents+='<p class=normal><a href="http://svrtmp.main.conacyt.mx/ConsultasPNPC/inicio.php">Sistema de Consulta del PNPC<\/a><\/p>';


    

	 

document.write('<marquee id=idm direction=up onMouseOut="continuar();" onMouseOver="parar_mar();" scrollAmount='+speed+' width='+marqueewidth+' height='+marqueeheight+'>'+marqueecontents+'</marquee>')

function parar_mar()
	{
		speed=0;
		document.all.idm.scrollAmount=speed;
	}
function continuar()
	{
		speed=3;
		document.all.idm.scrollAmount=speed;
	}
		function regenerate()
		{
			window.location.reload()
		}
		function regenerate2()
		{
			if (document.layers)
			{
				setTimeout("window.onresize=regenerate",450)
				intializemarquee()
			}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2

// final del comentario -->

