<!--

function openModalWindow(src, name, width, height) {
    if (width > screen.availWidth) {
        width = screen.availWidth;
    }
    if (height > screen.availHeight) {
        height = screen.availHeight;
    }
    windowX = (screen.availWidth - width)/2;
    windowY = (screen.availHeight - height)/2;
    retWindow = window.open(src, name, "top="+windowY+",left="+windowX+",screenX="+windowX+",screenY="+windowY+",width="+width+",height="+height+",location=no,menubar=no,directories=no,toolbar=no,scrollbars=auto,resizable=no,status=no");
    retWindow.focus();
}

-->