<!--//

	newwindow = "";

	function inNewWindow(w,h,s)
	{

		if (newwindow)
		{
			if (newwindow.closed != true) newwindow.close();
		}

		var verticalPosition = (screen.width - w)/2;
		var horizontalPosition = (screen.height - h)/2;

		newwindow = window.open('','newwindow','scrollbars='+s+',resizable=0,toolbar=0,menubar=0,location=0,status=0,width='+w+',height='+h+',left='+verticalPosition+',top='+horizontalPosition+'');
	}
	
//-->