
function loadmovie() {
//	var so = new SWFObject("http://www.montededioscr.org/swf/header.swf", "header", "750", "102", "8", "#000000");
	var so = new SWFObject("swf/header.swf", "header", "900", "102", "8", "#ffffff");
	so.write("flashContainer");				
}


function noticias() {
	var duracion = "1";
	var ancho 	 = "215";
	var alto 	 = "200";
	var items 	 = new Array();
	
	items[0] 	 = "<b><a href='#'>Encuentro de Varones</a></b><br>Del 26-28 de Setiembre<br><br><br>";
	items[1]	 = "<b><a href='#'>Encuentro de Mujeres</a></b><br>Del 24-26 de Octubre";


    str = '<div id=noticias onmouseover=show_news.stop() onmouseout=show_news.start() style="cursor:pointer; margin:5px;">'
		+ '<marquee id=show_news direction="up"'
        + 'scrollAmount='  + duracion
        + ' style="width:' + ancho + 'px;' 
        + ' height:' + alto + 'px;">'
		
    for (j = 0; j < items.length; j++) {
      str += items[j] + ''
	  }
    str += '</marquee></div>'
	document.write(str);	
}
