<!--

var msg="Copyright(c) 2005 Avantgarde Residence Hotel"

if (document.layers)
{
    document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=trapClick;
function trapClick(ev)
{
    //
    // This is the Internet Explorer part
    //
    if (document.layers)
    {
        if (ev.which == 3)
        {
            alert(msg);
            return false;
        }
    }
    
    if (document.all)
    {
        if (event.button == 2)
        {
            alert(msg);
            return false;
        }
    }
}

     
function Call(ilfile)
{
     window.open("Visualizza.asp?Nome=" + ilfile, "New2","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes"+",width="+640+",height="+480);  
} 
//-->
