	function infoWindow( textLabel)
	{
		urlText = "Info.aspx?Label=" + textLabel
		settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=275,left="+((screen.width-550)/2)+",top="+(screen.height-275)/2+"";
		infoWin = window.open( urlText, "MBCD", settings)
		infoWin.focus()
	}
	function explainWindow( num)
	{
		urlText = "Explain.aspx?FNum=" + num
		settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=275,left="+((screen.width-550)/2)+",top="+(screen.height-275)/2+"";
		explainWin = window.open( urlText, "MBCD", settings)
		explainWin.focus()
	}
	function startAllOver()
	{
		if (confirm('This option will take you back to the beginning. It will erase all of your responses and your list of prioritized factors. If you do not want to re-select and re-prioritize factors, click Cancel. If you want to start over from the beginning, click OK.'))
			window.location="Intro.aspx?Start=y"
	}
