<!--
function openPopWindow(file,popWidth,popHeight)
{
	PopWindow = window.open(file,'popWin','width=' + popWidth + ',height=' + popHeight + ',scrollbars=yes,resizable=yes,menubar=yes,toolbar=no,location=no,status=no,directories=no');
	PopWindow.moveTo(0,0);
	if (PopWindow.opener == null) PopWindow.opener = self;
	PopWindow.focus();
}
//-->