// JavaScript Document
CSAg = window.navigator.userAgent;
function popUpthis(pUrl,theW,theH,ss,sa){	
	if(sa!=null) sa="1"; else sa="0";
	//theW+= (IsWin>=0)? 0:0;	theH+= (IsWin>=0)? 20:0;
	//theH-= (IsWin<0 && IsIe>=0)? 76:0;
	//theW-= (IsWin<0 && IsIe>=0)? 18:0;	
	cLow=CSAg.toLowerCase(); cMac=cLow.indexOf("mac");
	if(cMac>=0&&document.layers){ //theW=theW-50; theH=theH-100;	       
	}else if(document.layers){ //theH=theH-60; 
	}else{ if(cMac>=0){ //theW=theW+92; theH=theH+128; 
	}else{ theW=theW-0; } //theH=theH-58; 
	}
	theW=theW+10; theH=theH+10;
	lPos=(screen.availWidth/2)-(theW/2); tPos=(screen.availHeight/2)-(theH/2);
	var bob=window.open(pUrl,ss,"toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrollbars="+sa+",width="+theW+",height="+theH+",top="+tPos+",left="+lPos);
    if( navigator.appName.substring(0,8)=="Netscape") bob.location=pUrl;
}
var bver=parseInt(navigator.appVersion);
var IsIe=navigator.appVersion.indexOf('MSIE');
var IsWin=navigator.appVersion.indexOf('Win');