    fullURL = document.URL;
    if (fullURL.indexOf('?') == -1) {
       start = fullURL.lastIndexOf("/");
       pageName = fullURL.substring(start);
       locString = "../cgi-bin/frames.cgi?page=" + pageName;
       window.top.location = locString;
    }
