﻿// Archivo JScript

function menu_onClick(intPage)
{
    var ctrlIFrame = document.getElementById('iframeMain');
    if (ctrlIFrame != null)
    {
        switch(intPage)
        {
            case 1: ctrlIFrame.src = 'Interfaces/Inicio.aspx'; break;
            case 2: ctrlIFrame.src = 'Interfaces/Empresa.aspx'; break;
            case 3: ctrlIFrame.src = 'Interfaces/Contactenos.aspx'; break;
            case 4: ctrlIFrame.src = 'Interfaces/Alianzas.aspx'; break;
            case 5: ctrlIFrame.src = 'Interfaces/Ubicanos.aspx'; break;
            case 6: ctrlIFrame.src = 'Interfaces/Directorio.aspx'; break;
            default:
                alert('mensaje 3');
        }
    }else
    {
        alert('Error. * Contenedor no encontrado.');
    }
}

function MostrarVentana(intAncho, intAlto, strUrl, strNombre)
{
    var xpos=(screen.width/2)- (intAncho/2);
    var ypos=(screen.height/2)-(intAlto/2);
    window.open(strUrl,strNombre,'top='+ ypos+',left='+ xpos +',location=no,width='+intAncho+',height='+intAlto+',toolbar=0,resizable=yes, status=0, location=0, directories=0, menubar=0, scrollbars=0, resize=0');
}