	function changeFlash(id_cont,picture)
	{
		elm = document.getElementById(id_cont);
		elm.innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='345' height='280'><param name='movie' value='images/primapagina.swf?pic="+ picture +"'><param name='quality' value='high'><embed src='images/primapagina.swf?pic="+ picture + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='345' height='280'></embed></object>";
	}
    
    function changeMap(id_cont,map)
    {
        elm = document.getElementById(id_cont);
        swf_html = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ";
        swf_html+= "codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'";
        swf_html+= " width='345' height='280'><param name='movie' value='images/dove.swf?crt="+map+"'>";
        swf_html+= "<param name='quality' value='high'>";
        swf_html+= "<embed src='images/dove.swf?crt="+ map+"' ";
        swf_html+= "quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' ";
        swf_html+= "type='application/x-shockwave-flash' width='345' height='280'>";
        swf_html+= "</embed></object>";
        elm.innerHTML = swf_html;
    }
    
    function getDettaglio(id_cont,showroom){
        browser = navigator.appName.split(" ");
        if (browser[0] == "Microsoft" || browser[0] == "MSIE"){
            href = "";
            style = "style='cursor: hand;'";
        }
        else {
            href="href='#'";
            style= "";
        }
        if (showroom == true){
            dettaglio_html = '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'1s\')"><img src="images/cartine/1_min.gif" alt="" /></a>';
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'2s\')"><img src="images/cartine/2_min.gif" alt="" /></a>'; 
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'3s\')"><img src="images/cartine/3_min.gif" alt="" /></a>';
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'4s\')"><img src="images/cartine/4_min.gif" alt="" /></a>';
        } else {
            dettaglio_html = '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'1\')"><img src="images/cartine/1_min.gif" alt="" /></a>';
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'2\')"><img src="images/cartine/2_min.gif" alt="" /></a>'; 
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'3\')"><img src="images/cartine/3_min.gif" alt="" /></a>';
            dettaglio_html+= '<a '+ href +' '+style+' onclick="javascript:changeMap(\'mappa\',\'4\')"><img src="images/cartine/4_min.gif" alt="" /></a>';
        }
        elm = document.getElementById(id_cont);
        elm.innerHTML = dettaglio_html;
    }
    
    function emptyText(id){
		elm = document.getElementById(id);
		elm.value = "";
	}