var intID = ""; //timeout ID
var TimeOut = 10;
function ShowMenu(Obj) {
    var myWidth = 0;
    if(document.body.clientWidth <= 1003){
        myWidth = 167;
    } else {
        myWidth = (((document.body.clientWidth - 1003) / 2) + 168);
    }
    document.getElementById(Obj).style.left = myWidth;
    document.getElementById(Obj).style.left = myWidth;
    
    if(document.getElementById(Obj).style.display == 'none') {
        document.getElementById(Obj).style.display = '';
        if(Obj == "MenuProduct") {
            setMenuHighlight('productsTB', 'MenuHighlightON');
        }
        if(Obj == "MenuProject") {
            setMenuHighlight('projectsTB', 'MenuHighlightON');
        }
    } else {
        clearTimeout(intID);
    }
}
function HideMenu(Obj) {
      intID = setTimeout("HideObject('"+Obj+"')", TimeOut);
}
function HideObject(Obj) {
     document.getElementById(Obj).style.display = 'none';
     if(Obj == "MenuProduct") {
          setMenuHighlight('productsTB', 'MenuHighlightOFF');
     }
     if(Obj == "MenuProject") {
          setMenuHighlight('projectsTB', 'MenuHighlightOFF');
     }
}
function ClearMenuTimeOut(Obj) {
     if(document.getElementById(Obj).style.display != 'none') {
          clearTimeout(intID);
     }
}