function g_fnOpenWindow(psURL)
{
    window.open(psURL,"_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=800, height=600")
}

function g_fnOnLoad(){}

function fnMenuChange(psValue)
{
    lsValue = psValue.replace(/.php|.html|.htm/g,"");
    switch (lsValue)
    {
        case "blog":
            window.location = "http://www.blog.helpdressyou.com/";
            break;
        case "newsletter":
            window.location = "mailto:info@helpdressyou.com?subject=Send%20the%20newsletter!";
            break;
        default:
            window.location = lsValue + ".php";
            break;
    }
}

function fnButtonGo(psElement)
{
    lsValue = $(psElement).value;
    window.location = lsValue + ".php";
}