//gestione della posizione delle finestre galleria
var pos=15;

function immagine(_file, _width, _height)
{
	window.open('immagini.html?' + _file + '&' + _width + '&' + _height, '_blank', 'toolbar=no, menubar=no, location=no, status=no, resizable=no, scrollbars=no,width=' + _width + ',height=' + _height + ',top='+ pos +',left='+ pos);
	if (pos > 120)
	{
		pos = 0;
	}
	pos += 15;
}

function newImage(arg)
{
	if (document.images)
		{
		rslt = new Image();
		rslt.src = arg;
		return rslt;
		}
}

function preload(_cosa)
{
	if (_cosa == "negozio")
	{
		var foto1_on = newImage("images/foto_1_on.gif");
		var foto2_on = newImage("images/foto_2_on.gif");
		var foto3_on = newImage("images/foto_3_on.gif");
		var foto4_on = newImage("images/foto_4_on.gif");
		var foto5_on = newImage("images/foto_5_on.gif");
		var foto6_on = newImage("images/foto_6_on.gif");
	}
}

function roll(_cosa,_chi, _come)
{
	_cosa.src = 'images/'+_chi+'_'+_come+'.gif';
}

