
<!--
function openWindow(url, name, w, h, r, s, m,left, top) {
	popupWin = window.open(url, name, 'width=' + w + ',height=' + h + ',resizable=' + r + ',scrollbars=' + s + ',menubar=' + m + ',left=' + left + 

',top=' + top);
}
function openwindow(url, name, w, h, r, s, m,left, top) {
	openWindow(url, name, w, h, r, s, m,left, top);
}


function popupNamed(nompopup,nom,w,h,scrolle) {

	var XposMsgBox = ( screen.width - w - 8 ) / 2 ;
	var YposMsgBox = ( screen.height - h - 30 ) / 2 ;
	stats='toolbar=no,location=no,directories=no,status=no,menubar=no,' ;
	stats += 'scrollbars='+scrolle+',resizable=no,width='+w+',height='+h+',left='+XposMsgBox+',top='+YposMsgBox ;		
	MsgBox = window.open (nom,nompopup,stats);
	return(MsgBox);
}
function popupnamed(nompopup,nom,w,h,scrolle) {
	popupNamed(nompopup,nom,w,h,scrolle);
}
//-->

function PopUp(src,noms,largeur,hauteur,leftx,topx)
        {
        popUp = window.open(src,noms,'width=' + largeur + ',' + 'height=' + hauteur  + ' ,left=' + leftx + ',top= '+ topx 

+',scrollbars=0,toolbar=0,menubar=0,location=0');
        if (popUp.focus) popUp.focus();
        }
//-->

