<!-- START





// FLOATING SAMPLE SCROLLING NEWS FOR A .JS FILE
/*
document.write('<div id="IframeScroller" style="position:absolute; visibility:show; left: 0px; top: 100px; z-index:3">');
document.write('<table cellpadding="0" cellspacing="0" border="0" >');
document.write('<tr><td>');
document.write('<iframe id="NewsWindow" src="menu.html" width="150" height="400" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" style="border: 0px solid;"></iframe><br>');
document.write('</td></tr></table>');
document.write('</DIV>');*/

// END CODE 2



// -- END FILE -->


<!-- HIDE CODE

var scrollspeed 	= 1		// SET SCROLLER SPEED 1 = SLOWEST
var startdelay 		= 0 		// START SCROLLING DELAY IN SECONDS
var nextdelay		= 0 		// SECOND SCROLL DELAY IN SECONDS 0 = QUICKEST
var topspace		= "0"		// TOP SPACING FIRST TIME SCROLLING
var frameheight		= "200"	// IF YOU RESIZE THE WINDOW EDIT THIS HEIGHT TO MATCH
var AreaHeight  = 6795 // Area total de lo que se va a mostrar (en IE a veces funciona dataobj.offsetHeight)


current = (scrollspeed)
function NewsScrollStart(){
marqueeheight=document.all? parent.document.all.NewsWindow.height : parent.document.getElementById("NewsWindow").getAttribute("height");
dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv");
dataobj.style.top=topspace;
//AreaHeight=dataobj.offsetHeight; 
setTimeout("ScrollNewsDiv()",( startdelay * 1000 ));

MM_preloadImages('images/icocristina_act.gif','images/icoanamaria_act.gif','images/icoisabelita_act.gif','images/icoteresita_act.gif','images/icoabout_act.gif','images/icograciela_act.gif','images/icomarilu_act.gif','images/icovirginia_act.gif', 'images/icobenitez_act.gif', 'images/icoelba_act.gif', 'images/icoelsa_act.gif', 'images/icogloria_act.gif', 'images/icoleysi_act.gif', 'images/icolupe_act.gif', 'images/icomacias_act.gif', 'images/icomirta_act.gif', 'images/icoolguita_act.gif', 'images/icorolando_act.gif', 'images/icorosario_act.gif', 'images/icoyamila_act.gif', 
'images/icoyuly_act'); 

}

function ScrollNewsDiv(){
dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed);
if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
dataobj.style.top=topspace;
//dataobj.style.top=frameheight;
setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ))
}
else {
setTimeout("ScrollNewsDiv()",30);
}

}
window.onload=NewsScrollStart;

// END HIDE CODE -->
