<!--
function myOpen(page,width,height)
{
	if (navigator.appName == 'Netscape')
		{
		adjWidth = width + 20;
		adjHeight = height + 20;
		}
	else
		{
		adjWidth = width + 50;
		adjHeight = height + 150;
		}

	window.open( page,'myWin','width=' + adjWidth + ' height=' + adjHeight + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes');
}
-->
