<!--

	function popUP(url,target,w,h,l,t) {
	if (window.screen) {
	  putItThere = window.open(url,target,'width=' + w + ',height=' + h + ',toolbar=1,location=1,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=' + (l) + ',top=' + (t));
		}
	  putItThere.focus();							
	}

		
	function popCenter(url,name,w,h) {
	if (window.screen) {
		var chasm = screen.availWidth;
		var mount = screen.availHeight;
		putItThere = window.open(url,name,'width=' + w + ',height=' + h + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=1,left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
			}
	}
		
	function popCenter2(url,name,w,h) {
	if (window.screen) {
		var chasm = screen.availWidth;
		var mount = screen.availHeight;
		putItThere = window.open(url,name,'width=' + w + ',height=' + h + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=1,left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
			}
	}
	

// -->

//<!--sample <a href="javascript:void(0);" onclick="popUP('http:URL','TARGET','Width','Height','pop from left','pop from top');">Leeches</a>--->
