function pop( name , address )
{
window.open( address , 'name' , 'width=550,height=400,scrollbars=yes,resizable=yes,location=no, directories=no,status=no,menubar=no,copyhistory=no');
}
function pop2( name , address ,largeur,hauteur )
{
window.open( address , 'name' , 'width='+ largeur + ',height='+ hauteur+',scrollbars=yes,resizable=yes,location=no, directories=no,status=no,menubar=no,copyhistory=no');
}
function imp() 
{
var add=new String(window.location);
posdiese=add.indexOf('#');
if (posdiese == -1) window.open( add + '&printable=yes','imprimer'); 
else window.open(add.substring(0,posdiese)+'&printable=yes','imprimer');
return true;
}
									
