﻿<!--
function rechercheRapide() {
    var produitId = $("#rechercheRapideId :selected").val();
    var produitNom = $("#rechercheRapideId :selected").text();
    if( produitId != '-1' ) {
        window.location = '/produits/recherche-rapide/' + produitId + '-' + urlencode(produitNom) + '/';
        //document.frmRecherche.submit();
    } else {
        alert("Vous devez sélectionner un produit!");
    }
}

function OverEssence()
{
    document.getElementById("hEssence").setAttribute("Class","h2Over")
}

function OverVerre()
{
    document.getElementById("me").setAttribute("Class","h2Over")
}

function OverCouleur()
{
    document.getElementById("me").setAttribute("Class","h2Over")
}

function OverSerrure()
{
    document.getElementById("me").setAttribute("Class","h2Over")
}

function urlencode(str) {
    return escape(str).replace(/\+/g,'%2B').replace(/%20/g, '+').replace(/\*/g, '%2A').replace(/\//g, '%2F').replace(/@/g, '%40');
}
-->