//<!--
//****************************************************************

//****************************************************************

/* PRECHARGEMENT DE L IMAGE DANS LE CACHE DU NAVIGATEUR */
if(document.images)
{
i709650 = new Image;
i709650 = "commande-2.png";
}

function hideStatusBar() {
    window.status='';
    window.setTimeout(hideStatusBar,1);
}

function noclick() {
    if (event.button==2) alert('Clic droit non valide !');
}
//document.onmousedown=noclick;

function valide(lien , mes) {
    if (confirm(mes)) window.location=lien + "&confirme=O";
}
function quantite(val1 , val2, val3, val4) {
    Qt=prompt("Nouvelle quantité :", val3);
    Qt=Math.floor(Qt);
    if ((Qt != null) & !isNaN(Qt))
           window.location="commande.php?" + val4 + "&modif=" + val1 + "|" + val2 + "|" + Qt + "||&ancien=" + val1 + "|" + val2 + "|" + val3 + "||";
    else
           window.location="commande.php?" + val4;
}

function PopupCentrer(page,titre,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,titre,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}


// Fonction normal pour afficher et
// effacer un "layer" DHTML
function Aff_layer (id) {
  if (document.layers) document[id].visibility = 'show';
  else if (document.all)
    document.all[id].style.visibility = 'visible';
  else if (document.getElementById)
    document.getElementById(id).style.visibility = 'visible';
}
function Cache_layer (id) {
  if (document.layers) document[id].visibility = 'hide';
  else if (document.all)
    document.all[id].style.visibility = 'hidden';
  else if (document.getElementById)
    document.getElementById(id).style.visibility = 'hidden';
}

//-->