function reBRW(){
	var browser="None";
	if(navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion)>=4) browser="NS4";version=4;
	if(document.getElementById){browser="NS6";
		if(navigator.userAgent.indexOf("6.01")!=-1 || navigator.userAgent.indexOf("6.0")!=-1) version=6;
		else version=6.1;
	}
	if(document.all){browser="IE";
		if(document.getElementById) version=5;
		else version=4;
	}
	if(navigator.userAgent.indexOf("Opera")!=-1){browser="Opera";
		if(navigator.userAgent.indexOf("7.")!=-1) version=7;
		else version=6;
	}
	return browser;
};
function tEVX(evt){
	if(browser=="NS4") return(evt.pageX);
	if(browser=="IE") return(event.x+Math.max(document.body.scrollLeft,document.body.parentNode.scrollLeft));
	if(browser=="NS6") return(evt.pageX);
	if(browser=="Opera"){
		if(version!=7) return(event.clientX);
		else return(event.clientX+window.pageXOffset);
	}
};
function tEVY(evt){
	if(browser=="NS4") return(evt.pageY);
	if(browser=="IE") return(event.y+Math.max(document.body.scrollTop,document.body.parentNode.scrollTop));
	if(browser=="NS6") return(evt.pageY);
	if(browser=="Opera"){
		if(version!=7) return(event.clientY);
		else return(event.clientY+window.pageYOffset);
	}
};
function bLP(layerName,parentName){
	if(browser=="NS4"){
		if(arguments.length==2) return(document.layers[parentName].document.layers[layerName]!=undefined);
		else return(document.layers[layerName]!=undefined);
	}
	if(browser=="IE") return(document.all[layerName]!=null);
	if(browser=="NS6"||browser=="Opera") return(document.getElementById(layerName)!=null);
};
function cIV(element){
	if(browser=="NS4"){
		if(document.layers[element]!=undefined){
			if(document.layers[element].visibility=="show") return true;
			else return false;
		}
	}
	if(browser=="IE"){
		if(document.all[element]!=null){
			if(document.all[element].style.visibility=="visible") return true;
			else return false;
		}
	}
	if(browser=="NS6"||browser=="Opera"){
		if(document.getElementById(element)!=null){
			if(document.getElementById(element).style.visibility=="visible") return true;
			else return false;
		}
	}
};
function fSH(element,show){
	if(browser=="NS4"){
		if(document.layers[element]!=undefined){
			if(show) document.layers[element].visibility="show";
			else document.layers[element].visibility="hide";
		}
	}
	if(browser=="IE"){
		if(document.all[element]!=null){
			if(show) document.all[element].style.visibility="visible";
			else document.all[element].style.visibility="hidden";
		}
	}
	if(browser=="NS6"||browser=="Opera"){
		if(document.getElementById(element)!=null){
			if(show) document.getElementById(element).style.visibility="visible";
			else document.getElementById(element).style.visibility="hidden";
		}
	}
};
function qWE(element,left,parent){if(browser=="NS4"){if(arguments.length>=3){document.layers[parent].document.layers[element].left=left;}else{document.layers[element].left=left;}}if(browser=="IE"){document.all[element].style.left=left+'px';}if(browser=="NS6"||browser=="Opera"){document.getElementById(element).style.left=left+'px';}};
function rTY(element,top,parent){if(browser=="NS4"){if(arguments.length>=3){document.layers[parent].document.layers[element].top=top;}else{document.layers[element].top=top;}}if(browser=="IE"){document.all[element].style.top=top+'px';}if(browser=="NS6"||browser=="Opera"){document.getElementById(element).style.top=top+'px';}};
function fKL(element,parent){
	if(browser=="NS4"){
		if(arguments.length>=2) return(document.layers[parent].document.layers[element].clip.height);
		else return(document.layers[element].clip.height);
	}
	if(browser=="IE") return(document.all[element].offsetHeight);
	if(browser=="NS6") return(document.getElementById(element).offsetHeight);
	if(browser=="Opera"){
		if(version==7) return(document.getElementById(element).offsetHeight);
		else return(document.getElementById(element).style.pixelHeight);
	}
};
function eBA(element,parent){
	if(browser=="NS4"){
		if(arguments.length>=2) return(document.layers[parent].document.layers[element].clip.width);
		else return(document.layers[element].clip.width);
	}
	if(browser=="IE") return(document.all[element].offsetWidth);
	if(browser=="NS6") return(document.getElementById(element).offsetWidth);
	if(browser=="Opera"){
		if(version==7) return(document.getElementById(element).offsetWidth);
		else return(document.getElementById(element).style.pixelWidth);
	}
};
//apup.js
function sDF(){
	this.popupCurrent=null;this.popupArray=new Array(50);
	this.pac=0;this.popupActive=0;this.codename="ajpopup";
	this.sGJ=function(){if(browser=="NS4"||browser=="NS6"||browser=="Opera"){return(window.innerWidth+window.pageXOffset);}if(browser=="IE"){if(document.body.parentNode.clientWidth==0){return(document.body.clientWidth+document.body.scrollLeft);}else{return(document.body.parentNode.clientWidth+document.body.parentNode.scrollLeft);}}};
	this.aZX=function(){if(browser=="NS4"||browser=="NS6"||browser=="Opera"){return(window.innerHeight+window.pageYOffset);}if(browser=="IE"){if(document.body.parentNode.clientHeight==0){return(document.body.clientHeight+document.body.scrollTop);}else{return(document.body.parentNode.clientHeight+document.body.parentNode.scrollTop);}}};
};
ajp_state=new sDF();
browser=reBRW();
function vBN(evt){
	if(ajp_state.popupCurrent!=null){
		if(!ajp_state.popupCurrent.isStatic){
			var x=tEVX(evt)+5;var y=tEVY(evt)+5;
			if(x+eBA(ajp_state.popupCurrent.id)>ajp_state.sGJ()) x=ajp_state.sGJ()-eBA(ajp_state.popupCurrent.id)+5;
			if(y+fKL(ajp_state.popupCurrent.id)>ajp_state.aZX()) y=y-fKL(ajp_state.popupCurrent.id)-10;
			qWE(ajp_state.popupCurrent.id,x);rTY(ajp_state.popupCurrent.id,y);
		}
	}
};
function pDI(evt,popup,isStatic){
	ajp_state.popupActive-=1;ajp_state.popupCurrent=popup;
	if(popup!=null){
		var x=tEVX(evt);var y=tEVY(evt);
		if(popup.isStatic){
			x-=6;y-=6;
			if(x+eBA(popup.id)>ajp_state.sGJ()) x=ajp_state.sGJ()-eBA(popup.id);
			if(y+fKL(popup.id)>ajp_state.aZX()) y=ajp_state.aZX()-fKL(popup.id);
		}else{
			x+=5;y+=5;
			if(x+eBA(popup.id)>ajp_state.sGJ()) x=ajp_state.sGJ()-eBA(popup.id);
			if(y+fKL(popup.id)>ajp_state.aZX()) y=y-fKL(ajp_state.popupCurrent.id)-10;
		}
		if(!(cIV(popup.id)&&popup.isStatic)){
			qWE(popup.id,x);
			rTY(popup.id,y);
		}
	}
	sHA();
	if(popup!=null) fSH(popup.id,true);
	return true;
};
function pHD(evt,popup){ajp_state.popupActive+=1;if(!popup.isStatic){sHA();ajp_state.popupCurrent=null;}else{setTimeout("cSH()",100);}};
function sTO(){ajp_state.popupActive+=1;setTimeout("cSH()",1);};
function cSH(){if(ajp_state.popupActive==0){for(var i=0;i<ajp_state.pac;i++){fSH(ajp_state.popupArray[i],false);}}};
function sHA(){for(var i=0;i<ajp_state.pac;i++){fSH(ajp_state.popupArray[i],false);}};
function AJPopup(width,cellpadding){
	var index=ajp_state.pac+1;this.id=ajp_state.codename+index;
	ajp_state.popupArray[ajp_state.pac++]=ajp_state.codename+index;
	this.cPO=cPO;this.aTX=aTX;this.aHD=aHD;this.css='ajpopup';this.target='_self';this.isStatic=false;this.border='';
	if(arguments.length>=1) this.width=arguments[0]; 
	else this.width='';
	if(arguments.length>=2) this.cellpadding=arguments[1];
	else this.cellpadding=0;
	this.leftpadding=5;this.rightpadding=5;this.html='';
};
function aTX(){
	for(var i=0;i<arguments.length;i++){
		this.html+='<tr><td class="ajpopuptxt" width='+this.leftpadding+'>&nbsp;</td><td class="'+this.css+'txt">'+arguments[i]+'</td><td class="ajpopuptxt" width='+this.rightpadding+'>&nbsp;</td></tr>';
	}
};
function aHD(text){
	this.html+='<tr><th class="ajpopuphdr" width='+this.leftpadding+' nowrap>&nbsp;</th><th class="'+this.css+'hdr">'+text+'</th><th class="ajpopuphdr" width='+this.rightpadding+'>&nbsp;</th></tr>';
};
function cPO(){
	this.shtml='<table onmouseover="ajp_state.popupActive-=1" onmouseout="sTO()" border="0" cellspacing="0" cellpadding="'+this.cellpadding+'"';
	if(this.width!='') this.shtml+=' width='+this.width;
	this.shtml+='>';
	this.ehtml='</table>';
	if(browser=="NS4") document.writeln('<layer onmouseover="ajp_state.popupActive-=1" onmouseout="sTO()" id="'+this.id+'" visibility="hide">'+this.shtml+this.html+this.ehtml+'</layer>');
	if(browser=="IE"||browser=="NS6"||browser=="Opera") document.writeln('<div id="'+this.id+'" style="position:absolute;visibility:hidden;border:'+this.border+';">'+this.shtml+this.html+this.ehtml+'</div>');
};
document.onmousemove=vBN;
if(browser=="NS4") document.captureEvents(Event.MOUSEMOVE);