﻿$(document).ready(function() {
    $('.SendMail').colorbox({ width: "452px", height: "430px", iframe: true});
});

function AddBookmark() {
    var bookmarkurl = window.location;
    var bookmarktitle = document.title;

    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(bookmarktitle, bookmarkurl, "");
    } 
    else if( window.external ) { // IE Favorite
        window.external.AddFavorite(bookmarkurl, bookmarktitle); 
    }
    else if (window.opera && window.print) { // Opera Hotlist
        return true; 
    }
}

function Print() {
    $('#Main').printElement()
}

function Translate(contentId, languageId){
    // 1:ITA  2:ENG
    var args = '';               
    args += '"contentId":'+contentId+', "languageId":'+languageId;             
    $.ajax({
        type: "POST",
        url: prefixPathRoot + "Translation.asmx/Translate",
        data: "{" + args + "}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(response) {
            if (response.d != null)
            {
                $('.ContentTitle').html(response.d.Title);
                $('.ContentAbstract').html(response.d.Abstract);
                $('.ContentDescription').html(response.d.Description);
                
            }
        }
    });
}
