function popup_image(url) {
	day = new Date();
	id_page = day.getTime();
	var nb_alea = Math.round((Math.random()*30)+1);
	var nb_left = 10 + nb_alea;
	var nb_top = 10 + nb_alea;
  window.open(url,id_page,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=100,height=100,screenX=30,screenY=30,top='+ nb_top +',left='+ nb_left)
}
function popup_detail_produit( URL ) {
	day = new Date();
	id_page = day.getTime();
	var nb_alea = Math.round((Math.random()*30)+1);
	var nb_left = 50 + nb_alea;
	var nb_top = 50 + nb_alea;
	var width = 650;
	var height = 600;
	window.open( URL, id_page, 'toolbar=0,scrollbars=1,location=0, statusbar=0,menubar=0,resizable=1,width='+ width +',height='+ height +',left = '+ nb_left +' ,top = '+ nb_top);
}
//--></script>
function ouvre(Url,Nom,L,H,posG,posH) { 
window.open(
Url,
Nom,
"width="+L
+",height="
+H+",left="
+posG
+",top="+posH
+",resizable=yes,dependent=yes,scrollbars=yes,menubar=no,toolbar=no,status=no");
}

IE5=NN4=NN6=false
if (document.all) 
  IE5=true;
else if (document.getElementById) 
  NN6=true;
else if (document.layers) 
  NN4=true;

function autoSize() 
  {
  if (IE5) self.resizeTo(document.images[0].width+10,document.images[0].height+31);
  else if (NN6) {
	 window.resizeTo(document.images[0].width+8,document.images[0].height+20)	
	//self.sizeToContent();
  }
  else window.resizeTo(document.images[0].width,document.images[0].height+20);
  self.focus()
  } 