<!--
	function OpenFixedWindow( strOpenPage, strWindowName )
	{
		window.open( strOpenPage, strWindowName, 'width=640,height=480,toolbars=no,scrollbars=yes,resizable=no' )
		return true;
	}

	function OpenResizableWindow( strOpenPage, strWindowName, intWidth, intHeight )
	{
		window.open( strOpenPage, strWindowName, 'width=' + intWidth  + ',height=' + intHeight + ',toolbars=no,scrollbars=yes,resizable=yes' )
		return true;
	}
//-->
