// base.js
// This file contains the generic script sections that are used on most pages of the site */
// AJS - 08/07/02

function opWin(URL) {
aWindow=window.open(URL, "thewindow", "toolbar=no,width=400,height=540,status=no,scrollbars=yes,resize=no,menubar=no");
};

function opSWin(URL, W, H) {
sWindow=window.open(URL, "swindow", "toolbar=no,width=" + W + ",height=" + H + ",status=no,scrollbars=yes,resize=yes,menubar=no");
};

