function openWindow(fileName, windowWidth, windowHeight)
	{
	var winStats = 'toolbar=yes,location=no,directories=no,menubar=no,scrollbars=yes,width=';
	winStats += windowWidth;
	winStats += ', height=';
	winStats += windowHeight;

	// open new window

	floater=window.open(fileName, "", winStats);
	}


