function openwindow2(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=yes,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(50,50);
}
function openwindow(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(170,170);
}
function openwindowN(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(330,220);
}
function openwindowN2(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(330,220);
}

function openw(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(0,0);
}

function popup(url, name, width, height)
{
settings=
"toolbar=yes,location=yes,directories=no,"+
"status=yes,menubar=yes,scrollbars=yes,"+
"resizable=yes,width="+width+",height="+height;

MyNewWindow=window.open(url,name,settings);
}
function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && 
         (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.icono.com.ar/"; 
      var titulo=">>> Icono - Centro Tecnológico <<<";
      window.external.AddFavorite(url,titulo);
   } else { 
      if(navigator.appName == "Netscape") 
         alert("Presione Crtl+D para agregar este sitio en sus Favoritos"); 
   }
} 