function openJobWindow(url, wname, w, h)
{
    var win = window.open (url, wname, "height="+h+",width="+w+",menubar,scrollbars,status,toolbar,left=0,top=0,screenX=0,screenY=0");
}

function openStoreWindow(url, wname, w, h)
{
    w = "420";
    h = "304";
    var win = window.open (url, wname, "height="+h+",width="+w+",menubar,toolbar");
}

function openGameWindow(url, wname, w, h)
{
    var win = window.open (url, wname, "height="+h+",width="+w+",left=10,top=10");
}

function openWindow(url, wname, w, h)
{
    var win = window.open (url, wname, "height="+h+",width="+w+",location,menubar,resizable,scrollbars,status,toolbar");
}

function trim(strText) { 
    // this will get rid of leading spaces 
    while (strText.substring(0,1) == ' ') 
        strText = strText.substring(1, strText.length);

    // this will get rid of trailing spaces 
    while (strText.substring(strText.length-1,strText.length) == ' ')
        strText = strText.substring(0, strText.length-1);

   return strText;
} 