	// redirect if browser is not standards compliant
	if (!document.getElementById) {
	    window.location = "oldbrowser.html"
	}
		
	// showimageid(2,'/img/dyna/macchia3.jpg','La Macchia !!!',673,450)
	function showimageid( id,src,title,width,height) {
		// opera.postError('entrato in showimageid'); // Debug message
		function displayimg() {
			//opera.postError('entrato in showimageid'); // Debug message
            imagetitle.innerHTML = title;
			imageimg.src = preloadimg.src;
			imageimg.width = width;
			imageimg.height = height;
		}
		var image, imageimg, imagetitle, preloadimg
		image = document.getElementById("contenitore"+id);
		imageimg = document.getElementById("contenitoreimmaginetmp"+id);
		imagetitle = document.getElementById("contenitoretitolo"+id);
		imageimg.src = '/img/loading.gif';
		image.style.display = 'block';
		//alert();
		preloadimg = new Image ();
		preloadimg.onload = displayimg;
		preloadimg.src = src;
	}

