function fnInsertPrint()
{
	// Création d'un lien
	var oA = document.createElement('a');
	oA.setAttribute('href', '#');
	var oTxtA = document.createTextNode('Imprimer');
	oA.appendChild(oTxtA);
	
	// Affectation de la méthode print() au clic sur le lien
	oA.onclick = function() { window.print(); return false; }
	
	// Positionnement du lien dans la page
	var oCont = document.getElementById('printer');
	if(!oCont) return;
	oCont.appendChild(oA);
	
	//<body onload="javascript:fnInsertPrint();">
	//<span id="printer" class="droite"></span>
}

function check( lg )
{
	var cat = document.forms["quickSearch"].cat.value;
	
	if( cat != '3' ) {
		document.getElementById('choixPrix').style.display = 'none';
		document.forms["quickSearch"].cp.value = '5';
	} else if( lg == 'fr' ) {
		document.getElementById('choixPrix').style.display = 'inline';
	}
	
}