lastPop=false;
function popUpFlash(webURL,w,h) {
	popUpHTML('flash/launchJSF.html?moviePath='+webURL,w,h)	
}
function popUpIMG(webURL,w,h) {
	popUpHTML('launchIMG.html?imgPath='+webURL,w,h)	
}
function popUpHTML(webURL,w,h) {
	if (lastPop)lastPop.close();
	lastPop=window.open(webURL, 'jlGauthier', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h)
	lastPop.focus();
}
function popUpNormal(webURL) {
	lastPop=window.open(webURL, 'jlGauthier')
	lastPop.focus();
}