// JavaScript Document

	var tauxTps = '0.05';
	var tauxTvq = '0.075';

function load(page, tps, tvq)
{
 if(page == 'BonCommande')
 {
 	calcul(tps, tvq, '30');
	}

}

function actualiser(resultat) 
{ 
	var temp = document.getElementsByName('frmEcole'); 
	var formulaire = temp[0]; 
	temp = document.getElementsByName('lstNivEcole'); 
	var select = temp[0]; 
	formulaire.action = '?P=Projets&filtre='+select.options[select.selectedIndex].value+resultat ; 
	formulaire.submit(); 
} 

