<!--//
function fctPopUp(name,url,wdth,hght,scrl,mnu){
	if (eval('window.'+name)) { 
		if (eval('!window.'+name+'.closed')) {
			eval(name+'.close()');
		}
	} 
	
	var intX = 0
	var intY = 0
	var strScrl
	var strMnu
	
	if (scrl){
		strScrl = "yes";
	}else{
		strScrl = "no";
	}
	
	if (mnu){
		strMnu = "yes";
	}else{
		strMnu = "no";
	}
	
	if (window.screen.width){
		if (screen.width - wdth > 0){
			intX = (screen.width - wdth)/2
		}
	}
	
	if (window.screen.height){
		if (screen.height - hght> 0){
			intY = (screen.height - hght)/2
		}
	}
	
	eval(name+'=window.open("'+url+'","'+name+'","menubar='+strMnu+',scrollbars='+strScrl+',scrolling='+strScrl+',width='+wdth+',height='+hght+',resizable=yes,screenX='+intX+',screenY='+intY+',left='+intX+',top='+intY+'")');
	eval(name+'.focus()');
}

function fctChkOpener(strURL){
	if (window.opener){
		window.opener.document.location = strURL;
		return false;
	}else{
		this.document.location = strURL;
	}
}
//-->