<!--
// *********************** Exemples:
// - Nav('http;//www.fantasy.fr','','') Ouvre dans la même page
// - Nav('http;//www.fantasy.fr','MonCadre','') Ouvre dans le cadre
// - Nav('http;//www.fantasy.fr','','neoFenetre') Ouvre dans une nouvelle fenêtre
// ***********************
function Nav(_url,_cadre,_target) {
  chemin = "http://www.fantasy.fr/boutique/";
  if (_cadre) {
    parent._cadre.location.href = chemin+_url;
  } else if (_target) {
    _target = window.open(chemin+_url,_target);
  } else {
    window.location.href = chemin+_url;
  }
}

//Empêche le clic droit
function nodroit()
        {
        return(false);
        }

document.oncontextmenu = nodroit;

function favoris(){
  if ( navigator.appName != 'Microsoft Internet Explorer' ){
    window.sidebar.addPanel("Fantasy.fr Boutique","http://www.fantasy.fr/boutique/","");
  }
  else {
    window.external.AddFavorite("http://www.fantasy.fr/boutique/","Fantasy.fr Boutique");
  }
}

// -->
