//////////////////////////////////////////////////////////////////////
//  Site.js
//////////////////////////////////////////////////////////////////////

// Reusable code for current web site only


//////////////////////////////////////////////////////////////////////
//  Functions
//////////////////////////////////////////////////////////////////////

function showPopup(url, id) {
    var popup = window.open(url,id,
             'width=640,height=600,'
            +'menubar=no,toolbar=no,location=no,status=no,'
            +'resizable=yes,scrollbars=yes'
            );
    popup.focus();
}

function startDownload(url) {
    var w = window.open(url,"download");
}

function setLanguage(lang) {
    var url = document.location.toString();
    if ( url.indexOf("/it/")>=0 )
        document.location = url.replace("/it/", '/'+lang+'/');
    else if ( url.indexOf("/en/")>=0 )
        document.location = url.replace("/en/", '/'+lang+'/');
    else
        document.location = '/'+lang+'/show.do';
}

