<!--

isMozilla = (document.all) ? 0 : 1;

function popup( url, winname, width, height ) {
	if (winname == "") winname = "popup";
	if (width == "") width = "400";
	if (height == "") height = "300";
	var top = (screen.height) / 2 - (height / 2);
	var left = (screen.width) / 2 - (width / 2);
	var win_arg = "scrollbars=no,status=yes,resizable=no,location=no,toolbar=yes,width=" + width + ",height=" + height + ",top=" + top + ",left=" + left;
	stub = window.open(url,winname,win_arg);
	stub.document.body.style.margin = '5px';
	stub.document.body.style.padding = '0px';
}


-->