
function popup(url,name,width,height,resize,scroll) {
var dialogWin = new Object();
dialogWin.width = width;
dialogWin.height = height;
now = new Date();
var millis=now.getTime();
var mstr=""+millis;
if (document.layers) {
dialogWin.left = window.screenX + ((window.outerWidth - dialogWin.width) / 2);
dialogWin.top = window.screenY + ((window.outerHeight - dialogWin.height) / 2);
var attr = 'screenX=' + dialogWin.left + ',screenY=' + dialogWin.top + ',resizable=yes,width=' + dialogWin.width + ',height=' + dialogWin.height + ',toolbar=yes,scrollbars=yes,menubar=yes,location=yes,status=yes,directories=yes';
} else if (document.all) {
dialogWin.left = (screen.width - dialogWin.width) / 2; 
dialogWin.top = (screen.height - dialogWin.height) / 2;
var attr = 'left=' + dialogWin.left + ',top=' + dialogWin.top + ',resizable=' + resize + ',width=' + dialogWin.width + ',height=' + dialogWin.height + ',toolbar=yes,scrollbars=yes,menubar=yes,location=yes,status=yes,directories=yes';
}
//Agrega el codigo anti-caching
tienesp=false;

window.open(url,name,attr);
}

function ventana(laURL)
{
popup(laURL,'','500','400','yes','yes');
}

function traductor()
{
laURL= 'http://www.cuba.cu/traduce.php'
popup(laURL,'','550','335');
}

   


//-->
//*************** FIN DE LOS SCRIPTS PARA LOS FAVORITOS *******
// script para abrir otra ventana 
function abre(url){ 
  
  window.open(url,'','width=500,height=400,menubar=0,resizable=0,toolbar=no,scrollbars=yes,titlebar,status=0,directories=no,location=no');
 }
 
//-->
