/*
	This script handles some of the cookie stuff like opening and closing pages.  
	Ok, that's pretty much all it does
*/

function openWindow(popUpWindowPath){ //ex. /common/question_pop.cfm; called in topOfBodyTag.cfm
	window.open(popUpWindowPath, "questionwindow", "scrollbars=yes,width=450,height=400");
}

function CloseWindow()
{
	window.close();
	if (window.opener && !window.opener.closed)
	{
		if (window.opener.location.toString().indexOf("?") == -1)
			var qsChar = '?';
		else
			var qsChar = '&';
		
		window.opener.location = window.opener.location + qsChar;
		//window.opener.location.refresh();
	}
}