<!--
var file;
function Popup(file, width, height) {
	var width = (width == null) ? "400" : width;
	var height= (height== null) ? "200" : height;
	wnd = window.open(file, "popup", "resizable=yes,scrollbars=yes,width=" + width + ",height=" + height);
	if (navigator.appName.indexOf("Netscape") != -1)
	{
		file.window.focus();
	}
	else if (navigator.appVersion.indexOf("5") != -1)
	{
		file.window.focus();
	}
	return true;
}
-->
