// JavaScript Document

var aWin = null;
function openWindow(whichPage) {
	aWin = window.open(whichPage,'','toolbar=yes,location=yes,scrollbars=yes,resizable=yes,menubar=yes,width=750,height=500');
	}

function openWindowLarge(whichPage) {
	aWin = window.open(whichPage,'','toolbar=yes,location=yes,scrollbars=yes,resizable=yes,menubar=yes,width=850,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();
}
