window.onload = function()
{
 fctLoad();
}
function colorSelector()
{
	ddlStrectCeilingTypeValue = document.forms[0].elements['aspecttoile'].value;
	fctLoad();
	
	switch(ddlStrectCeilingTypeValue)
	{
		case '10' :
			fctShow(document.devisatm.codecouleur,'SATINE');
			return;
		break;
		
		case '11' :
			fctShow(document.devisatm.codecouleur,'MAT');
			return;
		break;
		
		case '12' :
			fctShow(document.devisatm.codecouleur,'LAQUE');
			return;
		break;
		
		default:
			fctShow(document.devisatm.textecouleur,'');
			return;
		break;
	}
}
