function loadPhoto() {
	stock = document.frm_produit.stock_select ;
	stock_id = stock.options[stock.selectedIndex].value ;
	//alert(stock_id);
	ref_fournisseur = stocks[stock_id] ;
	//alert(ref_fournisseur);
	photo_name = photos[ref_fournisseur] ;
	//alert(photo_name);
	if (photo_name != undefined) {
		photo = document.getElementById('produit_grande_photo') ;
  	photo.src = 'userfiles/produit/g/' + photo_name;
		produit_grande_photo_link1 = document.getElementById('produit_grande_photo_link1') ;
  	produit_grande_photo_link1.href = 'userfiles/produit/o/' + photo_name;
		produit_grande_photo_link2 = document.getElementById('produit_grande_photo_link2') ;
  	produit_grande_photo_link2.href = 'userfiles/produit/o/' + photo_name;
  }
}
