1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
function redirection(type)
{
// Suivant la recherche l'affichage est différent
// maj ou new
var recherche;
// Gif de chargement
document.getElementById("visibiliteRechercheImage").style.display = "block";
if(document.getElementById("visibiliteRechercheImage").style.display == "block")
{
document.getElementById("visibiliteRechercheResultat").style.display = "none";
}
if(type == "maj")
{
if (document.myform.nomUtilisateurRecherche.value == "")
{
recherche = "allUser";
}else{
recherche = document.myform.nomUtilisateurRecherche.value;
}
window.location = 'monURL.asp?action=recherche&recherche='+recherche;;
}else{
if (document.myform.profilDroit.value == "")
{
recherche = "allUser";
}else{
recherche = document.myform.profilDroit.value;
}
window.location = 'monURL.asp?action=recherche&recherche='+recherche;
}
} |