<!--
var bIE = ( document.all ) ? true : false;
var bNN6 = ( !bIE && document.getElementById ) ? true : false;
var bNN4 = ( document.layers ) ? true : false;

function popup( sName, sUri, iWidth, iHeight, iScroll ) {
	var sPosition = "";
	if ( bNN4 || bNN6 || bIE ) {
		if ( (screen.height < 481) && (iHeight > 400) ) iHeight = 400;
		if ( (screen.height < 601) && (iHeight > 600) ) iHeight = 600;
		if ( iScroll == 1 ) {
			var sScroll = "yes";
			iWidth += 20;
		} else { var sScroll = "no"; }
		iX = Math.round( (screen.width - iWidth) / 2 );
		iY = Math.round( (screen.height - iHeight) / 2 );
		sPosition = ( bNN4 || bNN6) ? ",screenX=" + iX + ",screenY=" + iY : ",left=" + iX + ",top=" + iY;
	}

	oWindow = window.open( "/i/?" + sUri, sName, "status=yes,menubar=no,toolbar=no,resizable=yes,scrollbars=" + sScroll + ",location=no,width=" + iWidth + ",height=" + iHeight + sPosition);
	oWindow.focus();
	return false;
}
// -->
