<!-- hide from old browsers
/*************************************************************************
    
*************************************************************************/

 function stripslashes(str) {
str=str.replace(/\\'/g,'\'');
str=str.replace(/\\"/g,'"');
str=str.replace(/\\\\/g,'\\');
str=str.replace(/\\0/g,'\0');
return str;
}
function chamgeImgZoom(Base, Url)
   {
	ZoomLink= document.getElementById("zoomLink");
	ZoomLink2= document.getElementById("zoomLink2");
	//alert (ZoomLink);
	ZoomLink.href=Base+"imgBig/"+Url;
	ZoomLink2.href=Base+"imgBig/"+Url;
	//alert (ZoomLink.href);
	MainImg= document.getElementById("ArtImg");
	//alert (MainImg);
	//alert (MainImg.src);
	MainImg.src=Base+"imgMed/"+Url;
	//alert (MainImg.src);/**/
	//ZoomLink.title=Titolo;
}
// stop hiding -->
