var colore = "";
var materiale = "";
var objImage = null;


function setImage()
{
	if(colore.length > 0 && materiale.length > 0)
	{
		path = 'tessuti-web/'+materiale+'_'+colore+'.jpg'
		i = document.getElementById('img');
		i.src = path;		
	}
}

function openMaterial()
{
	if(colore.length > 0 && materiale.length > 0)
	{
		window.open('tessuti-web/800px/'+materiale+'_'+colore+'.jpg', 'material')
	}else
	{
		alert("Non hai selezionato alcun colore");
	}
}

function setColore(string)
{
	colore = string;
	setImage();
}

function setMateriale(string)
{
	materiale = string
	setImage()
}