// JavaScript Document
function abre_fichero(file,titulo)
{
 kk=window.open('', 'kk', 'width=600,height=400, toolbar=no, scrollbars=no, menubar=no, location=no, resizable=yes'); 
 kk.document.write("<html><head><title>"+ titulo +"</title></head><body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0><iframe width=100% height=100% frameborder=0 marginheight=0 marginwidth=0 hspace=0 vspace=0 src='"+ file +"'></iframe></body></html>");
}
function abreventanita(pagina)
{
 var danch = (screen.availWidth / 2)-(300/2); 
 var dalt = 20; 
 poput=window.open(pagina,'ventana','resizable=no,scrollbars=no,width=300,height=70,top='+ dalt +',left='+ danch)
}
