
function win_new(dir,X,Y,contenido) 
{ 
 var x=((screen.width)-X)/2;
 var y=((screen.height)-Y)/2;
 var tips=eval("window.open(" + 'dir' + ",'','left=" + x + ",top=" + y + ",width=" + X + ",height=" + Y + "')");
 tips.document.write('<html><head><title>Eucomsa</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="'+contenido+'"></body></html>');
 tips.document.clear();
}

function win_new2(dir,X,Y,contenido) 
{ 
 var x=((screen.width)-X)/2;
 var y=((screen.height)-Y)/2;
 var tips=eval("window.open(" + 'dir' + ",'','left=" + x + ",top=" + y + ",width=" + X + ",height=" + Y + ",scrollbars=yes" + "')");
 tips.document.write('<html><head><title>Eucomsa</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><center><img src="'+contenido+'"></center></body></html>');
 tips.document.clear();
}

function win_organigrama(dir,X,Y) 
{ 
 var x=((screen.width)-X)/2;
 var y=((screen.height)-Y)/2;
 var tips=eval("window.open(" + 'dir' + ",'','left=" + x + ",top=" + y + ",width=" + X + ",height=" + Y + ",scrollbars=no" + "')");
}

function win_datos(dir,X,Y,escroll) 
{ 
 var x=((screen.width)-X)/2;
 var y=((screen.height)-Y)/2;
 var tips=eval("window.open(" + 'dir' + ",'','left=" + x + ",top=" + y + ",width=" + X + ",height=" + Y + ",scrollbars="+escroll+"')");
}
