<!--
function newWin( fName, width, height, scroll )
{
        if (width == null) {width = 745;}
        if (height == null) {height = 500;}
        if (scroll == null) {scroll = 0;}
        if (document.all){
        var hWnd = window.open(fName, 'newWnd' ,
        "width=" + width + "," +
        "height=" + height + "," +
        "top=0," +
        "left=0," +
        "menubar=0," +
        "toolbar=0," +
        "location=0," +
        "status=0," +
        "scrollbars=" + scroll + "," +
        "resizable=1")
        }
        else {
        //netscape code here
        var hWnd = window.open(fName, 'newWnd' ,
        "width=" + width + "," +
        "height=" + height + "," +
        "menubar=0," +
        "toolbar=0," +
        "location=0," +
        "status=0," +
        "scrollbars=1," +
        "resizable=1")
        }
}

function fullWindow(url) {
    var str = "left=0,screenX=0,top=0,screenY=0,resizable";
    if (window.screen) {
      var ah = screen.availHeight - 30;
      var aw = screen.availWidth - 10;
      str += ",height=" + ah;
      str += ",innerHeight=" + ah;
      str += ",width=" + aw;
      str += ",innerWidth=" + aw;
    }
    win=window.open(url, "w", str);
}

//  -->
