﻿function show_alert(MenuID)
{
    var SelectMenu = document.getElementById(MenuID);
    window.open(SelectMenu.options[SelectMenu.selectedIndex].value, "_blank", "height=300,width=800,top=250,left=300,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,modal=yes,opener=yes");
    //alert("I am an alert box!");
}

function getPage(strDomain, strLink, strParams, intContentID, intModuleID, strMenus, strAlias) {
    if (strLink != "") {
        document.location = strLink;
    } else if (strAlias != "") {
        document.location = "" + strAlias;
    } else {
        if (strDomain == "") strDomain = "";
        document.location = strDomain + "/" + strParams + "/" + intContentID + "/" + intModuleID + "/" + strMenus + "/";
    }
}

function checkSize(oEl, intLength) {
    if (oEl.value.length >= intLength) {
        return false;
    } else {
        return true;
    }
}

function initPage() {
    try {
        loadEvents();
    } catch (e) {
    }

}

function mOut(oEl) {
    oEl.className = 'menu';
    window.status = '';
}

function mOver(oEl, strStatus) {
    oEl.className = 'menu_over';
    window.status = strStatus;
}

window.onload = initPage;
//-->
