<!-- Begin
function NewWindow(mypage, myname, w, h, scrolling) {
var winl = 20;
var wint = 20;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scrolling+',resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->

function NewPopUp(img_titre,desc,img1,img2,img3,img4,img5,width_popup,height_popup) {

var winl = 20;
var wint = 20;
var nbpics = 0;

if(width_popup==""){width_popup="345";}
if(height_popup==""){height_popup="382";}

var i = 0;
var nbr = 1;
while(desc.indexOf("<br>",i)>0)
{
	i=desc.indexOf("<br>",i)+4;
	nbr++;
}
hauteur_desc = (15 * nbr) + 5;
winprops = 'width='+width_popup+',height='+height_popup+',menubar=0,top=100,left=100,scrollbars=yes,resizable=no';
win = window.open("","",winprops);

if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

win.document.write("<body topmargin='9' bottommargin='0' leftmargin='6' rightmargin='0'><table cellpadding='0' cellspacing='0' border='0'><tr><td colspan='3'><img src='"+img_titre+"'></td></tr>");
if(desc!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='"+ hauteur_desc +"'></td><td width='287' align='center'><table align='center'><tr><td><font color='#7E9C52' style='font-size:9px' face='Verdana'>"+desc+"</font></td></tr></table></td><td width='18'><img src='images/pix.gif' width='1' height='"+ hauteur_desc +"'></td></tr>");}
if(img1!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='216'></td><td width='287' align='center'><img src='"+img1+"' vspace='3'></td><td width='18'><img src='images/pix.gif' width='1' height='216'></td></tr>");}
if(img2!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='216'></td><td width='287' align='center'><img src='"+img2+"' vspace='3'></td><td width='18'><img src='images/pix.gif' width='1' height='216'></td></tr>");nbpics=1;}
if(img3!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='216'></td><td width='287' align='center'><img src='"+img3+"' vspace='3'></td><td width='18'><img src='images/pix.gif' width='1' height='216'></td></tr>");nbpics=2;}
if(img4!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='216'></td><td width='287' align='center'><img src='"+img4+"' vspace='3'></td><td width='18'><img src='images/pix.gif' width='1' height='216'></td></tr>");nbpics=3;}
if(img5!=""){win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='216'></td><td width='287' align='center'><img src='"+img5+"' vspace='3'></td><td width='18'><img src='images/pix.gif' width='1' height='216'></td></tr>");nbpics=4;}
win.document.write("<tr><td width='15' align='right'><img src='images/pix.gif' width='1' height='1'></td><td width='287' align='center'><img src='images/pix.gif' width='287' height='1'></td><td width='18'><img src='images/pix.gif' width='1' height='1'></td></tr></table><br></body>");
}
