	function spawn_window(address, title, sizing) 
	{
		var newWindow;
		newWindow 		 = window.open("", title, sizing);
		newWindow.location.href  = address;
		//* newWindow.opener	 = window.parent;
		newWindow.opener	 = window;
		newWindow.opener.name    = "opener";
		window.close;
		return;
	}
