﻿// JScript File
function irACasaPaco()
{
window.parent.navigate('http://www.casapaco.com');
}

    function mostrarGastosDeEnvio()
    {
      if (window.showModalDialog) {  
        var caracteristicas = "dialogTop=100px;dialogLeft=100px;dialogWidth=1000px;" +
        "dialogHeight=700px;center=yes;help=no;font-family:Arial;";
        window.showModalDialog('TablaGastosDeEnvio.aspx', "", caracteristicas);
      }
      else
      {        
        var caracteristicas = "height=700, width=1000, toolbar=0, directories=0," +   
        "status=0, linemenubar=0, modal=yes, left=100, top=100, dialog=yes,";
        NuevaVentana = window.open('TablaGastosDeEnvio.aspx','modal',caracteristicas);
        NuevaVentana.moveTo(100,100);
        NuevaVentana.focus();
        
      };
    }