
    function enviar(pagina){
        document.location.href = pagina;
    }


    function abrirVentana(url,titulo,width,height) {
        var windowpropiedades ="top=0,left=0,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width="+width+",height="+height;
        window.open(url,titulo,windowpropiedades).focus();
    }

    function addbookmark(){
        var bookmarkurl=window.location.href
        var bookmarktitle=document.title
        if (document.all)
            window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    
    function ImprimirPagina(text){
        text=document
        print(text)
    }

    function EmailLink(){
        window.location = "mailto:"+"?subject=Una página interesante" + "&body="+document.title+"  "+window.location;
    }

    function abrirImagen(url,titulo,width,height) {
        var windowpropiedades ="top=0,left=0,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height;
        window.open(url,titulo,windowpropiedades).focus();
    }

    function changeImage() {
        if (document.images) {
            for (var i=0; i<changeImage.arguments.length; i+=2) {
                document[changeImage.arguments[i]].src = changeImage.arguments[i+1];
            }
        }
    }


    

