// open a popup in the look of the website
// Fonction de référence
function f_openPopupParamMain(banner,contenuURL,name,width,height, top, left) 
{
	OpenWindow=window.open("",name, "width="+width+", height="+height+", menubar=no, toolbar=no, scrollbars=no, status=no, resizable=yes, top="+top+", left="+left);
	OpenWindow.document.write('<frameset rows="40,*" cols="*" bordercolor="#FFFFFF" frameborder="NO" border="0" framespacing="0">');
 	OpenWindow.document.write('<frame src="'+banner+'" name="top" frameborder="NO" marginwidth="0" marginheight="0" scrolling="NO" noresize>');
	OpenWindow.document.write('<frame src="'+contenuURL+'" name="contenu" marginwidth="0" marginheight="0" noresize frameborder="NO">');
	OpenWindow.document.write('</frameset>');
	OpenWindow.document.write('<noframes>');
	OpenWindow.document.write('<body bgcolor="#FFFFFF">');
	OpenWindow.document.write('</body></noframes>');
	OpenWindow.document.close();
}

function f_openPopup_documents(urlDocument)
{
  newWindow=window.open(urlDocument,'documents','width=765,height=520,menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=yes,top=20,left=23');
  newWindow.focus();
}
