//Affichage des photos sur la droite
function aR(contenu, smallpic, titre, url, type) {

   var nP, tP = $("results_photo");
      
   nP=document.createElement("div");
      

   nP.style.marginBottom = "140px";   
         
    if (type == "PHOTO")
		{
			//$("videp").style.display="none";
	 		nP.innerHTML = '<a onclick="return hs.expand(this)" class="highslide" href="'+ url +'"><img title="Cliquer pour elargir" alt="" src="'+ smallpic +'" width="183" height="185" /></a>';
		}
			
		tP.appendChild(nP);
		
  $("top_results_photo").style.display="";
  }
  //Affichage de la photo sur la gauche
function aR2(contenu, smallpic, titre, url, type) {

   var nP2, tP2 = $("results_photo2");
      
   nP2=document.createElement("div");
      

   nP2.style.marginBottom = "140px";   
         
    if (type == "PHOTO")
		{
			//$("videp").style.display="none";
	 		nP2.innerHTML = '<a onclick="return hs.expand(this)" class="highslide" href="'+ url +'"><img title="Cliquer pour elargir" alt="" src="'+ smallpic +'" width="183" height="185" /></a>';
		}
			
		tP2.appendChild(nP2);
		
  $("top_results_photo2").style.display="";
  }
