//  File:     MEjavascriptUtils.js
//
//  Javascript utilities for the ME web site.  These are short scripts for opening windows (so far)
//  This file is included in the <HEAD> element of HTML files
//
//  Author:   Gerald Recktenwald, gerry@me.pdx.edu
//  Created:  28 August 2003
//  Changes:

function newSmallWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=300");
}
function blankShortWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=150");
}
function blankSmallWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=200");
}
function blankLongWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=800");
}
function blankEmailWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=720,height=550");
}
function blankFeedbackWindow(page) {
OpenWin = this.open(page, "dispwin",
                    "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=800,height=750");
}
