function ventana(titulo,clsTitulo, arregloNov, clsArreglo) 
{   
	var msgWindow;
	var myArgs;
	var scadena;
        
        
        myArgs = "width=280," 
                 + "height=180," 
                 + "location=0," 
                 + "menubar=0," 
                 + "resizable=0," 
                 + "scrollbars=1," 
                 + "status=0," 
                 + "titlebar=0," 
                 + "toolbar=0," 
                 + "hotkeys=0," 
                 + "screenx=0," 
                 + "screeny=0," 
                 + "left=460," 
                 + "top=0"; 
                
	msgWindow = open('', '', myArgs); 
                msgWindow.focus(); 

	//msgWindow=window.open("","displayWindow","toolbar=no, status=no, menubar=no,scrollbars=no, resizable=no, width="+iWidth+", height="+iHeight);
	
	msgWindow.document.write ("<head><title>Novedades</title><link rel='stylesheet' href='/inc/css/site.css' type='text/css'></head>");
	msgWindow.document.write ("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	msgWindow.document.write ("<table width='247' border='0' cellspacing='0' cellpadding='0'><tr>");
        msgWindow.document.write ("<td width='71' height='39' valign='bottom'><img src='/i/nov/lupa1.gif' width='57' height='8'><img src='/i/nov/lupa2.gif' width='57' height='24'></td>");
        msgWindow.document.write ("<td height='39' valign='bottom'><img src='/i/nov/lupa3.gif' width='121' height='24'></td></tr>");
        msgWindow.document.write ("<tr><td width='71' valign='top'><img src='/i/nov/lupa4.gif' width='57' height='85'></td><td valign='top'>");
        msgWindow.document.write ("<table border='0' cellspacing='0' cellpadding='0' width='190'><tr><td colspan='2' class='"+clsTitulo+"'>"+titulo+"</td></tr>");
	msgWindow.document.write ("<tr><td colspan='2' bgcolor='#003A81' height='1'><img src='/i/trans.gif' width='1' height='1'></td></tr><tr><td width='10'>&nbsp;</td><td width='180' valign='top'><img src='/i/comun/flecha-azul.gif' width='15' height='17'></td></tr>");
	msgWindow.document.write ("<tr><td width='220' colspan='2' valign='top'>");
	scadena = "<ul class=clsTexto>";
	scadena += "<a href='#' onclick=\"window.opener.location='http://ofi.mef.gob.pe/ctarepublica/default.aspx'; window.close();\" class='"+clsArreglo+"'>Cuenta General de la República 2008</a>";
	for(var i=0; i< arregloNov.length; i++){
		scadena +="<li><a href=\""+ arregloNov[i].href+"\" target='_blank' class='"+clsArreglo+"'>"+ arregloNov[i].titulo+"</a></li>";
	}
	scadena += "</ul>";
	msgWindow.document.write (scadena);
	msgWindow.document.write ("</td></tr></table>");
	msgWindow.document.write ("</td></tr><tr> <td colspan='2' align='center'><img src='/i/nov/logo-chico.gif' width='115' height='26' alt='Transparencia Econ&oacute;mica'></td></tr></table>");
	msgWindow.document.write ("</body>");
}

