function PopWin(WindowURL, WindowName, WindowOptions) { //pops up a new windown with our spcifications
	var TargetWindow = window.open(WindowURL, WindowName, WindowOptions);
		TargetWindow.focus();
		return false;
}

function CloseWin() { //kills the named window that we previously opened
		window.close();
		return false;
}