﻿		var IDRivestimentoPrec = 0;
		var IDRivestimentoColorePrec = 0;
		var RivestimentoDefaultPrec = 0;
		var RivestimentoColoreDefaultPrec = 0;
		
		function CheckRivestimentoDefault(RivestimentoDefault,RivestimentoColoreDefault) {
			RivestimentoDefaultPrec = RivestimentoDefault;
			RivestimentoColoreDefaultPrec = RivestimentoColoreDefault;
		}
		
		function showPic(Quadratino,ImgRivestimento,NomeTessuto,IDTessuto,IDTessutoColore) {
			if (document.getElementById) { 
				//if (IDRivestimentoColorePrec != 0) document.getElementById('CodiceColoreScelto_' + IDRivestimentoColorePrec).style.display = "none";
				//document.getElementById('CodiceColoreScelto_' + IDTessutoColore).style.display = "block";
				document.getElementById('fotoProdBigImg').src = Quadratino.href; 
				if (IDTessutoColore != IDRivestimentoColorePrec) { 
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).src = ImgRivestimento;
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).title = NomeTessuto;
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).alt = NomeTessuto;
					//document.getElementById('content2').childNodes[3].childNodes[0].innerHTML = NomeTessuto;
					//document.getElementById('content2').childNodes[5].innerHTML = DescrizioneTessuto;
					
					if (IDRivestimentoColorePrec != 0) {
						document.getElementById('schedaRivest_' + IDRivestimentoPrec + '_' + IDRivestimentoColorePrec).style.display = "none";
						document.getElementById('schedaRivestNome_' + IDRivestimentoPrec + '_' + IDRivestimentoColorePrec).style.display = "none";
						document.getElementById('Descrizione_' + IDRivestimentoPrec + '_' + IDRivestimentoColorePrec).style.display = "none";
					} 	else {
						document.getElementById('schedaRivest_' + RivestimentoDefaultPrec + '_' + RivestimentoColoreDefaultPrec).style.display = "none";
						document.getElementById('schedaRivestNome_' + RivestimentoDefaultPrec + '_' + RivestimentoColoreDefaultPrec).style.display = "none";
						document.getElementById('Descrizione_' + RivestimentoDefaultPrec + '_' + RivestimentoColoreDefaultPrec).style.display = "none";	
					}						
					
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).style.display = "block";
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).width = "360";
					document.getElementById('schedaRivest_' + IDTessuto +'_' + IDTessutoColore).height = "145";
					document.getElementById('schedaRivestNome_' + IDTessuto +'_' + IDTessutoColore).style.display = "block";
					document.getElementById('Descrizione_' + IDTessuto +'_' + IDTessutoColore).style.display = "block";
					
					IDRivestimentoColorePrec = IDTessutoColore;
					IDRivestimentoPrec = IDTessuto;
					switcha(2);
				}	
				return false; 
			} else {
				return true; 
			} 
		}
		