//[!CDATA[
//2000 Copyright DataLabor.Com sas
//Tutti i diritti riservati

function dlApriFinestra(page)
{
	vReturnValue = window.open(page, "", "dialogHeight:380 px;dialogWidth:670 px;resizable:No;status:No;help:No;scroll:no");
	return false;
}

function dlApriFinestraModale(page)
{
	vReturnValue = window.showModalDialog(page, "", "dialogHeight:200 px;dialogWidth:500 px;resizable:No;status:No;help:No;");
	return vReturnValue;
}

function dlApriFinestraZoom(page)
{
    cmd = "/zoom.aspx?Foto=" + page;
	vReturnValue = window.open(cmd, "", "toolbar=no,width=300,height=430,left=50,top=50,status=no,scrollbars=no,resizable=0");
	return false;
}

function dlMostraDiv(name)
{
    var ctrl = document.getElementById(name);
	ctrl.style.display = '';
	ctrl.style.visibility = 'visible';
}

function dlNascondiDiv(name)
{
    var ctrl = document.getElementById(name);
	ctrl.style.display = 'none';
	ctrl.style.visibility = 'hidden';
}

function dlMostraNascondiDiv(name,icn)
{   
    var ctrl = document.getElementById(name);
    
    if(ctrl.id=="schedaSalone")
    {
        dlNascondiDiv("schedaMaison");
        dlNascondiDiv("schedaCambioVita");
        document.getElementById("Img1").src="/img/freccia.png";
        document.getElementById("Img2").src="/img/freccia.png";
    }
    if(ctrl.id=="schedaMaison")
    {
        dlNascondiDiv("schedaCambioVita");
        dlNascondiDiv("schedaSalone");
        document.getElementById("icnEventi_1").src="/img/freccia.png";
        document.getElementById("Img2").src="/img/freccia.png";
        
    }
    if(ctrl.id=="schedaCambioVita")
    {
        dlNascondiDiv("schedaSalone");
        dlNascondiDiv("schedaMaison");
        document.getElementById("Img1").src="/img/freccia.png";
        document.getElementById("icnEventi_1").src="/img/freccia.png";
        
    }
	if (ctrl.style.visibility == "visible")
	{
		dlNascondiDiv(ctrl.id);
		icn.src="/img/freccia.png";
	}
	else
	{
		dlMostraDiv(ctrl.id);
		icn.src="/img/freccia2.png";
	}
	
	
}

// ]]>