﻿function rechercher(chaine) 
{ 
  var title = chaine.value;
  var lesMots = chaine.value.split(' ');
  var clips = '<b>Clips :</b><div id="search-clips">[[afficher les articles]].[[rubrique:clips]].[[titre:' + lesMots.join(']].[[titre:') + ']].images(image%3Btitre)</div><br/>';
  var sons = '<b>Sons :</b> <div id="search-sons">[[afficher les articles]].[[rubrique:sons]].[[titre:' + lesMots.join(']].[[titre:') + ']].images(image%3Btitre)</div><br/>';
  var videos = '<b>Videos :</b> <div id="search-clips">[[afficher les articles]].[[rubrique:videos]].[[titre:' + lesMots.join(']].[[titre:') + ']].images(image%3Btitre)</div><br/>';
  var news = '<b>News :</b> <div id="search">[[afficher les articles]].[[rubrique:new]].[[titre:' + lesMots.join(']].[[titre:') + ']]</div><br/>';
  var hiphop = '<b>Hip Hop :</b> <div id="search-clips">[[afficher les articles]].[[rubrique:hiphop]].[[titre:' + lesMots.join(']].[[titre:') + ']].images(image%3Btitre)</div><br/>';
  var paroles = '<b>Paroles :</b> <div id="search">[[afficher les articles]].[[titre:lyrics]].[[titre:' + lesMots.join(']].[[titre:') + ']]</div><br/>';
  var albums = '<b>Albums :</b> <div id="search-sons">[[afficher les articles]].[[rubrique:albums]].[[titre:' + lesMots.join(']].[[titre:') + ']].images(image%3Btitre)</div><br/>';
  var concerts = '<b>Concerts :</b> <div id="search">[[afficher les articles]].[[rubrique:concerts]].[[titre:' + lesMots.join(']].[[titre:') + ']]</div><br/>';
  var articles = '<b>Autres :</b> <div id="search">[[afficher les articles]].[[rubrique:articles]].[[titre:' + lesMots.join(']].[[titre:') + ']]</div>';
  location.replace('http://www.generap.com/cgi-bin/execute.pl?site_id=rap&command='+clips+sons+videos+news+hiphop+paroles+albums+concerts+articles+'&title=Résulat de recherche pour '+title)                    
}    