function clientlauncher(command)
{
    try{
        var url = "/includes/Client/resources/ClientLauncher.aspx"
        if(typeof(command) != "undefined")
        {
            url += "?cc=" + command;
        }
        popunder(url, "clientlauncher", 200, 200);
    }catch(e){
         //An Alert?
    }
}
function popunder(url, target, height, width)
{
    win = window.open(url,
	            target,
	            "height="+height+",width="+width+
	            ",status=yes,scrollbars=no,toolbar=no,menubar=no,location=no");
    win.blur();
    window.focus();
}