/* script for popup-windows */

IE = navigator.appName == "Microsoft Internet Explorer";

NS = navigator.appName == "Netscape";

bVer = parseInt(navigator.appVersion);

var newWin=null;

function popUp(loc, name, width, height, scroll)

{

 	var _params = "width=" + width + ",height=" + height + ",resizable=no,status=no";

	_left = 40;

	_top = 40;

	if (IE) _params += ",top=" + _top + ",left=" + _left + ",scrollbars="+ scroll;

	else if (NS) _params += ",screenX=" + _left + ",screenY=" + _top + ",scrollbars=" + scroll;

	newWin = window.open(loc, name, _params);

	if ( newWin!=null && !(IE && bVer<5) )

		newWin.focus();

}

