<!--
/*
	Open Window
	Written by Jerry Aman, Optima System, 1997-2000 

	Part of the PageSpinner distribution, 	
	http://www.optima-system.com/pagespinner/

	We will not be held responsible for any unwanted 
	effects due to the usage of this script or any derivative.  
	No warrantees for usability for any specific application are 
	given or implied.

	You are free to use and modify this script,
	if the credits above are given in the source code
*/

msgWindow = document;

function showWindow ()
{
	msgWindow = open("fengshui.shtml","displayWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=300,height=180"); 

	msgWindow = open("fengshui.shtml","displayWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=300,height=180");
}


function closeWindow ()
{
	if (msgWindow && msgWindow != document)
	{
		msgWindow.close();
		msgWindow = document;
	}
}

// -->