// JavaScript Document

						function calcul() {
						var nb;
						var lg;
						var ht;
						var qu;
						
						coef = document.devis.coche.value;
						lg = document.devis.lo.value;
						ht = document.devis.haut.value;
						qu = document.devis.u.value;
						m2 = lg/100*ht/100;
						qtot = m2 * qu;
						prtg=10000;
						envoi = 4.95;
						mini = 10;
						
						
						
						
						
						tot = Math.round((coef * qtot)*100)/100;
						document.devis.prix_total.value = tot;
								
								document.devis.total_ttc.value = (Math.round((tot)*100)/100)+15;
								
								
						
						return false;
						}			
						
						
										
						
						
						
