/*****************************************************/
/* author : penne21                                  */
/* this function is called from howgee.blogspot.com  */
/* "le chercheur hOwGee"                             */
/*****************************************************/
function LeChercheur()
{
   if (document.LePanneau.Quoi[0].checked==true)  /* musique */
   {
	  LaChaine="intitle:\"index of\" intitle:mp3 -filetype:html -filetype:htm";	 
   }
   if (document.LePanneau.Quoi[1].checked==true)  /* video 1 */
   {
      LaChaine="-inurl:htm -inurl:html -inurl:php intitle:\"index of\" (mpg|avi|wmv)"; 
   }   

   if (document.LePanneau.Quoi[2].checked==true)  /* video 1 */
   {
      LaChaine="intitle:\"index of\" intitle:movies -filetype:html -filetype:htm"; 
   }   
   
   if (document.LePanneau.Quoi[3].checked==true)  /* fichier */
   {
      LaChaine="intitle:\"index of\" -filetype:html -filetype:htm"; 
   }   
   
    document.LePanneau.q.value = LaChaine + ' + ' + document.LePanneau.LeTexte.value;
    document.LePanneau.submit();   
}	

function EffaceLeTexte()
{
   if (document.LePanneau.LeTexte.value=="ma recherche") document.LePanneau.LeTexte.value="";
}
