﻿// JScript File
   function addFavori(){
       if (document.all)
       {
                     // For IE
            window.external.AddFavorite(location.href, document.title);
       }
        else if (window.sidebar)
       {
             // For Firefox
             window.sidebar.addPanel(document.title, location.href, "");
       }
   }
   
   
function abrir(direccion, pantallacompleta, herramientas, direcciones, estado, barramenu, barrascroll, cambiatamano, ancho, alto, izquierda, arriba, sustituir){
        
        var x=document.getElementById("contentInfo")
        alert(x.innerHTML)
        var opciones = "fullscreen=" + pantallacompleta +
                 ",toolbar=" + herramientas +
                 ",location=" + direcciones +
                 ",status=" + estado +
                 ",menubar=" + barramenu +
                 ",scrollbars=" + barrascroll +
                 ",resizable=" + cambiatamano +
                 ",width=" + ancho +
                 ",height=" + alto +
                 ",left=" + izquierda +
                 ",top=" + arriba;
       
        var ventana = window.open(direccion,"Imprimir",opciones,sustituir);

}                    
//-->    

    function doPrint(theForm){
        
        document.getElementById("header").style.visibility='hidden';
        document.getElementById("footer").style.visibility='hidden';
        document.getElementById("bottom").style.visibility='hidden';
        document.getElementById("menu").style.visibility='hidden';
        document.getElementById("contentInfo").style.visibility='visible'    
        window.print();
        //document.getElementById("header").style.visibility='visible'
        //document.getElementById("footer").style.visibility='visible'
        //document.getElementById("bottom").style.visibility='visible'
       // document.getElementById("menu").style.visibility='visible'
    }
    
    function show()
    {
        
        window.location.reload();
    }
     

     function mailpage()
    {
         mail_str = "mailto:?subject=Visit this Page: " + document.title;
         mail_str += "&body=I recommend you visit this page -- " + document.title;
         mail_str += ".  Link: " + location.href; 
         location.href = mail_str;
    }
    
    function imprimirPagina() 
    { 
        if (window.print) 
            window.print(); 
            
        else alert("Lo siento, pero a tu navegador no se le puede ordenar imprimir" 
        + " desde la web. Actualizate o hazlo desde los menús"); 
    }

    function imprSelec()
    {
        var ficha;
        if(document.getElementById("main"))
            ficha = document.getElementById("main");
        else if(document.getElementById("main2"))
            ficha = document.getElementById("main2");
        else ficha = document.getElementById("main3");
         
      var ventimp = window.open(' ', 'popimpr');
      ventimp.document.write( ficha.innerHTML );
      ventimp.document.close();
      ventimp.print( );
      ventimp.close();
    } 
    