<!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!---->
function switchChrom() {
	if (document.getElementById('choixChrom').style.display=="block") {
		fermeChrom();
	} else {
		ouvreChrom();
	}
}
function ouvreChrom() {
	document.getElementById('choixChrom').style.display="block";
}
function fermeChrom() {
	document.getElementById('choixChrom').style.display="none";
}

function choixCoul(numCoul) {
	document.getElementById("choixCouleur").value = numCoul;
	switch (numCoul) {
		case 1:/*bleu*/
			document.getElementById("afficheCoul").style.backgroundColor = "#1D1DF0";
			document.getElementById("afficheCoul").style.color = "#FFF";
			document.getElementById("afficheCoul").value = "blue";
			break;
		case 2:/*vert*/
			document.getElementById("afficheCoul").style.backgroundColor = "#1DF01D";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value = "green";
			break;
		case 3:/*jaune*/
			document.getElementById("afficheCoul").style.backgroundColor = "#E7EF1A";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value = "yellow";
			break;
		case 4:/*orange*/
			document.getElementById("afficheCoul").style.backgroundColor = "#F38F23";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value ="orange";
			break;
		case 5:/*rose*/
			document.getElementById("afficheCoul").style.backgroundColor = "#D56663";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value = "pink/red";
			break;
		case 6:/*marron*/
			document.getElementById("afficheCoul").style.backgroundColor = "#9C6F3A";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value = "brown/beige";
			break;
		case 8:/*violet*/
			document.getElementById("afficheCoul").style.backgroundColor = "#AE1BB0";
			document.getElementById("afficheCoul").style.color = "#FFF";
			document.getElementById("afficheCoul").value = "purple";
			break;
		case 9:/*gris*/
			document.getElementById("afficheCoul").style.backgroundColor = "#B2B2B2";
			document.getElementById("afficheCoul").style.color = "#000";
			document.getElementById("afficheCoul").value = "grey/black";
			break;
		default:
			document.getElementById("afficheCoul").style.backgroundColor = "#FFF";
			document.getElementById("afficheCoul").style.color = "#666";
			document.getElementById("afficheCoul").value = "- Select -";
			break;
	}
	fermeChrom();
}



function display_advanced(){
	if(document.getElementById("advanced_search").className == "advanced_search_on"){
		document.getElementById("advanced_search").className = "advanced_search_off";
	} else {
		document.getElementById("advanced_search").className = "advanced_search_on" ;
	}
}

/*-------------------------------------------------------------------------------------------*/
function PopupPic(sPicURL) {
	window.open( "/hel_scripts/ImgPopup.asp?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
/*-------------------------------------------------------------------------------------------*/