//empeche la saisie du double cote											
function bloqcote(){
	if (event.keyCode == 34){
		event.returnValue = false;
		}
	}

 var fenetre;
//Ouvre une popup de choix au clic sur l'image
function popup(fic,hei,wid){
	fenetre=window.open("../zooms/"+fic+".asp",fic,"height="+hei+",width="+wid+",left=93,top=98,resizable=no,scrollbars=no");
	}
	//Ouvre une popup de choix avec parametres au clic sur l'image
function popup_param(fic,param,hei,wid){
	fenetre=window.open("../zooms/"+fic+".asp?"+param,fic,"height="+hei+",width="+wid+",left=93,top=98,resizable=no,scrollbars=no");
	}
//Fermeture d'une popup	
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//Ouvre une popup de confirmation de suppression
function popup_conf_supp(param,hei,wid,titre){
	fenetre=window.open("../zooms/confirmation.asp?"+param,titre,"height="+hei+",width="+wid+",left=93,top=98,resizable=no,scrollbars=no");
	}
//Fermeture automatique d'une ou plusieurs popup
function fermeture(){
  if (fenetre!=null) 
    {
	fenetre.close();
	}
}


	
