// JavaScript Document

function deployer(id)	{
		
	if (document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = 'block';
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
}
			
		
function switchImg(id)	{
	if(document.getElementById(id).className == 'switchPlus') {
		document.getElementById(id).className = 'switchMoins';
	} else  {
		document.getElementById(id).className = 'switchPlus';
	}
}



function verifpoint(userpoint,totalcommande){

	if (userpoint<totalcommande)
	{
		alert("Vous n'avez pas assez de points. Retirez des articles ");
		return false;
	}
	else{
		return true;
	}
}
