﻿var par = 0, child = 1;
function showSubMenu() {

//    if (arguments[0] != null) {
//        var BrowserVal = getBrowser();
//        //if (BrowserVal == "MSIE 7.0") {
//        var myObj = document.getElementById(arguments[0] + "1");
//        var pos = 0;
//        pos = findPos(document.getElementById(arguments[0]));
//        //alert(pos);
//        //alert(myObj.style.marginLeft);
//        //myObj.style.marginLeft = 230 - pos + "px";
//        myObj.style.marginLeft = 230 - pos + "px";
//        //alert(myObj.style.marginLeft);
//        //myObj.style.marginTop = "5px";            
//        //}
//    }
    //SetChildID(arguments[0]);
    if (arguments[1].length == 0) {
        child = 1;
        par = arguments[0];
        var cntl = document.getElementById(par);
        cntl.className = "backrep2";
        ShowItem(arguments[0] + "1")
    }
    else if (arguments[2] == "1")
        window.open(arguments[1], "Menu");
    else {
        document.cookie = "ParentID=" + arguments[0] + ";path=/";
        window.parent.location.href = arguments[2] + arguments[1];
        window.parent.location.target = "_parent"
    }
}

function changeMainHeadBG() {
    document.getElementById(arguments[0]).className = "selectedHeaderMainMenuTab"
}
function ChangeSubBG() {
    //alert(arguments[0]);
    var cntl = document.getElementById(arguments[0]);
    cntl.className = "backrepSubMenu subMenuSelected";
   
}
