// JavaScript Document

var aWin = null;
function openWindow(whichPage) {
	aWin = window.open(whichPage,'','toolbar=yes,location=yes,scrollbars=yes,resizable=yes,menubar=yes,width=800,height=600');
	}

function openWindowLarge(whichPage) {
	aWin = window.open(whichPage,'','toolbar=yes,location=yes,scrollbars=yes,resizable=yes,menubar=yes,width=900,height=650');
	}

function closeTheWindow() {
	if (aWin != null && aWin.open) aWin.close();
}

// To close child and return to parent.
function closeWindow() {
window.open('','_parent','');
window.close();
}
