<!--
function fenetrepopup(URL,winName,features,largeur,hauteur,scroll,resize) {
popup = window.open(URL,winName,'toolbar=0,location=0,directories=0,status=0,scrollbars=' + scroll +',resizable=' + resize + ',copyhistory=0,menuBar=0,top=20, left=' + (screen.width/2) +',width=' + largeur + ',height=' + hauteur);
popup.focus();
}
function clearinput() {
    document.getElementById("q6").value = "";
}
function soumission() {
    var page;
    var service;
    page = document.PageForm.action;
    service = page.split("-");
    page = window.location.hostname + "/" + service[0]+'-recherche.aspx';
    alert(page);
    document.PageForm.method='post';  
    document.PageForm.action = page;   
}
function presskey(e) {
    if (e.keyCode == '13') {
        soumission();
    }
}
function authorizeCategory(frame,url,confirmation,libelle)
{
   {
        var doc = document;
        if (frame != "_self")
            doc = window.frames[frame];
        if (confirmation)
        {
            var result = confirm(libelle);
            if (!result)
                return false;
        }
        doc.location.href = url;
   } 
}
//-->