var rubriques = new Array();
rubriques['Web'] = new Array();
rubriques['Web']['Google'] = 1;
rubriques['Web']['Msn'] = 1;
rubriques['Web']['Releton'] = 1;
rubriques['Web']['Voila'] = 1;
rubriques['Web']['Yahoo'] = 1;
rubriques['Photos'] = new Array();
rubriques['Photos']['Google'] = 1;
rubriques['Photos']['Istockphoto'] = 1;
rubriques['Photos']['Yahoo'] = 1;
rubriques['Vidéos'] = new Array();
rubriques['Vidéos']['Youtube'] = 1;
rubriques['Vidéos']['Dailymotion'] = 1;
rubriques['Vidéos']['Wat'] = 1;

var moteurs = new Array();
moteurs['Web'] = new Array();
moteurs['Web']['Google'] = new Array();
moteurs['Web']['Google']['url'] = 'http://www.google.fr/search?hl=fr&q={q}';
moteurs['Web']['Google']['target'] = '_blank';
moteurs['Web']['Msn'] = new Array();
moteurs['Web']['Msn']['url'] = 'http://search.msn.fr/results.aspx?q={q}';
moteurs['Web']['Msn']['target'] = '_blank';
moteurs['Web']['Releton'] = new Array();
moteurs['Web']['Releton']['url'] = 'http://www.releton.com/?q={q}';
moteurs['Web']['Releton']['target'] = '_blank';
moteurs['Web']['Voila'] = new Array();
moteurs['Web']['Voila']['url'] = 'http://www.voila.fr/?rdata={q}';
moteurs['Web']['Voila']['target'] = '_blank';
moteurs['Web']['Yahoo'] = new Array();
moteurs['Web']['Yahoo']['url'] = 'http://fr.search.yahoo.com/search?p={q}';
moteurs['Web']['Yahoo']['target'] = '_blank';
moteurs['Photos'] = new Array();
moteurs['Photos']['Google'] = new Array();
moteurs['Photos']['Google']['url'] = 'http://images.google.fr/images?hl=fr&q={q}';
moteurs['Photos']['Google']['target'] = '_blank';
moteurs['Photos']['Istockphoto'] = new Array();
moteurs['Photos']['Istockphoto']['url'] = 'http://www.istockphoto.com/file_search.php?action=file&text={q}';
moteurs['Photos']['Istockphoto']['target'] = '_blank';
moteurs['Photos']['Yahoo'] = new Array();
moteurs['Photos']['Yahoo']['url'] = 'http://fr.images.search.yahoo.com/search/images?p={q}';
moteurs['Photos']['Yahoo']['target'] = '_blank';
moteurs['Vidéos'] = new Array();
moteurs['Vidéos']['Youtube'] = new Array();
moteurs['Vidéos']['Youtube']['url'] = 'http://fr.youtube.com/results?search_query={q}';
moteurs['Vidéos']['Youtube']['target'] = '_blank';
moteurs['Vidéos']['Dailymotion'] = new Array();
moteurs['Vidéos']['Dailymotion']['url'] = 'http://www.dailymotion.com/videos/relevance/search/{q}';
moteurs['Vidéos']['Dailymotion']['target'] = '_blank';
moteurs['Vidéos']['Wat'] = new Array();
moteurs['Vidéos']['Wat']['url'] = 'http://www.wat.tv/medias/relevance/search/{q}';
moteurs['Vidéos']['Wat']['target'] = '_blank';

function majSelection()
{
    var f = document.fsearch;
    f.moteur.selectedIndex = 0;
    f.moteur.options.length = 1;
    if(f.rubrique.value != '')
    {
        var opt;
        for(m in rubriques[f.rubrique.value])
        {
            opt = document.createElement('OPTION');
            opt.value = m;
            opt.text = m;
            f.moteur.options[f.moteur.options.length] = opt;
        }
    }
}

function recherche()
{
    var f = document.fsearch;

    if(f.rubrique.value == '')
    {
        alert('Vous devez choisir une rubrique !');
        f.rubrique.focus();
        return false;
    }

    if(f.moteur.value == '')
    {
        alert('Vous devez choisir un moteur de recherche !');
        f.moteur.focus();
        return false;
    }

    if(f.q.value == '')
    {
        alert('Vous devez entrer un sujet de recherche !');
        f.q.focus();
        return false;
    }

    window.open(moteurs[f.rubrique.value][f.moteur.value]['url'].replace('{q}', f.q.value), moteurs[f.rubrique.value][f.moteur.value]['target']);

    return false;
}