<!--//
function fctPopUp(name,url,wdth,hght,scrl,mnu,resz){
	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 (resz){
		strResize = "yes";
	}else{
		strResize = "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=yes,scrollbars='+strScrl+',scrolling='+strScrl+',width='+wdth+',height='+hght+',resizable='+strResize+',screenX='+intX+',screenY='+intY+',left='+intX+',top='+intY+'")');
	//if (eval('window.'+name)) { 
		//eval(name+'.focus()');
	//}
}
//-->