


/*------------------------------------------------------------------------------------------*/

function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
 function confirmation2(url,msg) {
	if (confirm(msg)) {  
		document.getElementById(url).submit();
	}
}
	
function Recopie(){
	document.getElementById('civiliteliv').value = document.getElementById('civilite').value;
	document.getElementById('prenomliv').value = document.getElementById('prenom').value;
	document.getElementById('nomliv').value = document.getElementById('nom').value;
	document.getElementById('societeliv').value = document.getElementById('societe').value;
	document.getElementById('adresseliv').value = document.getElementById('adresse').value;
	document.getElementById('villeliv').value = document.getElementById('ville').value;
	document.getElementById('cpliv').value = document.getElementById('cp').value;
	document.getElementById('paysliv').value = document.getElementById('pays').value;	
}

function CopieChamps(source,destination){
	if(document.getElementById('recopie').checked==true){
		document.getElementById(destination).value = document.getElementById(source).value;
	}
}

function MaJDesabo(valeur,div1,div2)
        {
   
     if(valeur == true){
         document.getElementById(div1).style.display="block";  //on affiche
		 document.getElementById(div2).style.display="none";  //on affiche
     }
     else{
       document.getElementById(div2).style.display="block";  //on affiche
		document.getElementById(div1).style.display="none";  //on affiche
     }
         
    }



function continue_achat(){
	javascript:window.close();
	window.opener.location.replace("index.php");
}

function valid_panier(){
	javascript:window.close();
	window.opener.location.replace("panier.php");
}
function pop_it(the_form) {
   my_form = eval(the_form)
   window.open("wait.php", "popup", "height=500,width=800,menubar='no',toolbar='no',location='no',status='no',scrollbars='yes'");
   my_form.target = "popup";
   my_form.submit();
} 