	var newWin1;
	function WindowClose()
	{
		return;
		var winArg;
		if(newWin1 && !newWin1.closed)
		{
			newWin1.focus();
		}
		else
		{
			winArg = ""
			winArg += "width=550";
			winArg += ",height=550";
			winArg += ",left=" + (screen.width-550)/2;
			winArg += ",top=" + (screen.height-550)/2;
			winArg += ",toolbar=0";
			winArg += ",location=0";
			winArg += ",directories=0";
			winArg += ",status=1";
			winArg += ",menubar=0";
			winArg += ",scrollbars=1";
			winArg += ",resizable=1";
							
			newWin1=window.open('\Opinion.aspx',"newWin1",winArg);			
			newWin1.focus();		
		}
	}