function OpenRemote(name, title, URL, wx, hx, rs, m)
{
        var x = "";
        x = x + "resizable="+rs+ ",menubar="+m;
        x = x + ",toolbar=0,location=0,directories=0,status=0,scrollbars=1,copyhistory=0,";
        x = x + "width="+wx+ ",height="+hx;

        name = window.open(URL, title, x);
}