	<!--

		function popIt(url) {

			url = '/popup/' + url + '.htm';

			if (document.all || document.getElementById) {
				var xMax = screen.width;
				var yMax = screen.height;
			}
			else if (document.layers) {
				var xMax = window.outerWidth; 
		    		var yMax = window.outerHeight;
			}
			else {
				var xMax = 800;
				var yMax=600;
			}

			var xOffset = (xMax - 200)/2, yOffset = (yMax - 310)/2;
			winName = window.open(url,'newWin',config='width=200,height=300,resizable=no,scrollbars=no,toolbar=no,status=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');

	winName.document.write("#lineLDiv 		{ position: absolute; left:         0px; top:                  0px; width:     1px; height: "+H+"px; z-index: 2; background-color: #000000; layer-background-color: #000000; clip:rect(0,1,"+H+",0);}");
	winName.document.write("#lineRDiv		{ position: absolute; left: "+(W-1)+"px; top:                  0px; width:     1px; height: "+H+"px; z-index: 2; background-color: #000000; layer-background-color: #000000; clip:rect(0,1,"+H+",0);}");
	winName.document.write("#lineBDiv 		{ position: absolute; left:         0px; top: "+         (H-1)+"px; width: "+W+"px; height:     1px; z-index: 2; background-color: #000000; layer-background-color: #000000; clip:rect(0,"+W+",1,0);}");
	winName.document.write("#lineTDiv 		{ position: absolute; left:         0px; top:                  0px; width: "+W+"px; height:     1px; z-index: 2; background-color: #000000; layer-background-color: #000000; clip:rect(0,"+W+",1,0);}");
	winName.document.write("#stillloadingDiv 	{ position: absolute; left:         0px; top: "+Math.ceil(H/2)+"px; width: "+W+"px; height: "+H+"px; z-index: 1; background-color: #C0C0C0; layer-background-color: #C0C0C0; clip:rect(0,"+W+",19,0);}");

			winName.focus();
		}

	//-->