function aff(name)
	{	
		$elt = document.getElementById(name);
		//alert($elt.style.display);
		if ($elt.style.display == 'none')
			$elt.style.display = '';
		else
			$elt.style.display = 'none';
	}
	
function affprod(name)
	{	
		$elt = document.getElementById(name);
		//alert($elt.style.display);
		if ($elt.style.display == 'none')
		{
				$elt.style.display = '';
				document.getElementById('compteur').value = parseInt(document.getElementById('compteur').value) + 1;
		}
		else
		{
			$elt.style.display = 'none';
			document.getElementById('compteur').value = parseInt(document.getElementById('compteur').value) - 1;
		}
			if (document.getElementById('compteur').value == 0)
				document.getElementById('pr').style.display = '';
			else
				document.getElementById('pr').style.display = 'none';
	}
	
function imprimer()
{
	refwin = window.open();
	body = window.document.getElementsByTagName("body")[0];
	refwin.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">");
	refwin.document.writeln("<html>");
	refwin.document.writeln("<head>");
	refwin.document.writeln("<link rel='STYLESHEET' type='text/css' href='css/print.css'>");
	refwin.document.writeln("<link rel='STYLESHEET' type='text/css' href='css/produits.css'>");
	refwin.document.writeln("<title>Aperçu avant impression</title>");
	refwin.document.writeln("</head>");
	refwin.document.writeln("<body>");
	//refwin.document.writeln("<input class=\"cache\" type=\"button\" id=\"imprimer\" value=\"Imprimer\" onClick=\"window.print()\">");
	//refwin.document.writeln("<input class=\"cache\" type=\"button\" id=\"fermer\" value=\"Fermer\" onclick=\"window.close()\">");
	refwin.document.writeln(body.innerHTML);
	refwin.document.writeln("</body>");
	refwin.document.writeln("</html>");
	refwin.document.close();
	refwin.print();
	refwin.close();
	//refwin.stop();
}

function retour(adresse)
{
	//adresse = "produits.php?id=" + id;
	window.location.replace(adresse);
}

