<!--
function fermerfenetre() {
	window.close();
}
function updtracklisting(str) {
	var list = window.opener.document.getElementById('tracklisting');
	list.innerHTML = str ;
}
function updimglisting(str) {
	var list = window.opener.document.getElementById('imglisting');
	list.innerHTML = str ;
}
function popupcentre(theURL,winName,largeur,hauteur,features) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(theURL, winName, "top=" + top + ",left=" + left + ",width=" + largeur + ",height=" + hauteur + "," + features);
}
function MM_openBrWindowCenter(theURL,winName,features,largeur,hauteur) { //v3.0
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  var nouvelle=window.open(theURL, winName, "top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+features);  
  nouvelle.focus ;
}

function rien(){
	
}
function blockChampAll() { 
	blockChamp("client_facturation_nom");
	blockChamp("client_facturation_prenom");
	blockChamp("client_facturation_adresse1");
	blockChamp("client_facturation_adresse2");
	blockChamp("client_facturation_codepostal");
	blockChamp("client_facturation_ville");
	blockChamp("client_facturation_region");
	blockChamp("client_facturation_tel");
	blockChamp("client_facturation_email");
}
function blockChamp(champ) {
	if(document.forms["formlivraison"].elements["client_facturation_idem"].checked) {
		document.forms["formlivraison"].elements[champ].disabled=true ;
		document.forms["formlivraison"].elements[champ].value='';
	}
	else {
		document.forms["formlivraison"].elements[champ].disabled=false ;
	}
}

function verif_cgv() { 
  if(document.forms['form_recap'].cgv.checked==false){
  	alert('Vous devez cocher pour accepter les conditions generales de vente.');
  }
  return document.forms['form_recap'].cgv.checked ;
}
function verif_cgv_en() { 
  if(document.forms['form_recap'].cgv.checked==false){
  	alert('Please accept the sales terms & conditions.');
  }
  return document.forms['form_recap'].cgv.checked ;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->