<!--
function CreateWindow(WOBJNAME, Wurl, Wname, Wreplace, Wwidth, Wheight, Wmenubar, Wtoolbar, Wlocation, Wscrollbars, Wstatus, Wresizable, WscreenX, WscreenY, Wdependent, Wfullscreen, Wleft, Wtop)
{
        var Wfeatures = 'width=' + Wwidth +
        ',height=' + Wheight +
        ',location=' + Wlocation +
        ',scrollbars=' + Wscrollbars +
        ',toolbar=' + Wtoolbar +
        ',menubar=' + Wmenubar +
        ',resizable=' + Wresizable +
        ',status=' + Wstatus +
        ',screenX=' + WscreenX +
        ',screenY=' + WscreenY +
        ',dependent=' + Wdependent +
        ',left=' + Wleft +
        ',top=' + Wtop +
        ',fullscreen=' + Wfullscreen;
        eval(WOBJNAME + ' = window.open(Wurl, Wname, Wfeatures)');
}
// -->