<!--
defaultStatus ="Simpatico Software Systems"

function popUpWindow(theURL,winName,features) {
	// Behaves just like window.open() but ensures visible child windows
	closePopUpWindow();
	openedWindow = open(theURL,winName,features+",left=0,top=0,screenX=0,screenY=0");
	openedWindow.onunload = confirmClosed;
	onunload = closePopUpWindow;
	windowOpen = true;
	return (openedWindow);
}
function closePopUpWindow(){
	// Closes a window's child window
	if (window.windowOpen){
		openedWindow.close();
		confirmClosed();
	}
}
function confirmClosed(){
	// Used to confirm when the child window is closed
	windowOpen = false;
}

//-->




