
//agregar a favoritos
function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && 
         (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.egeda.es/eldesiertoproducciones/"; 
      var titulo="EL DESIERTO PRODUCCIONES";
      window.external.AddFavorite(url,titulo);
   } else { 
      if(navigator.appName == "Netscape") 
         alert("Presione Crtl+D para agregar este sitio en sus Bookmarks"); 
   }
} 

//cargar foto
function CargarFoto(img, ancho, alto){
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;

string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  fin=window.open(img,"",string);
}

//abrir ventana nueva
function AbrirVentana(img, ancho, alto){
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;

string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  fin=window.open(img,"",string);
}

// descarga todo
function GuardarArchivo(Archivo)
{
var Ventana;

    Ventana = window.open(Archivo,'','width=700,height=500,top='+((screen.height - 500)/2)+',left='+((screen.width - 700)/2)+',toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0'); 

    if(confirm('¿Desea Guardar el Archivo?') == 1)
    {
        Ventana.focus();
		Ventana.document.execCommand('SaveAs','',Archivo);
    }
    Ventana.close();

}
