function InitMainMenu(pagetitle) {
    $("#lnkbill").hide();
    $("#lnkinvoice").hide();
    $("#lnkReportChart").hide();
    
    switch (pagetitle) {
        case "account":
            $("#lnkbill").show();
            $("#lnkinvoice").show();
            break;
        case "report":
            ("#lnkReportChart").show();
            break;
    }

}


function InitMainMenuStatic(pagetitle) {
    $("#trimages").hide();

    switch (pagetitle) {
        case "home.html":
            $("#trimages").show();
            break;
    }

}

function getValidString(strVal) {
    var validValue = "";
    sup = escape(strVal);
    validValue = sup.replace(/\s/g, "%20");
    validValue = validValue.replace(/\+/g, "%2B");
    return validValue;
}
