﻿
addToBlog = function() {

    showBoxyPage('Add To Blog', '/_common/service/blogging/addToBlog.aspx', 360, 100);

    return false;
}

shareWithFriends = function() {

    showBoxyPage('Share With Friends', '/_common/service/blogging/shareWithFriends.aspx', 360, 305);

    return false;
}

showBoxyPage = function(title, url, w, h) {

    new Boxy(null, {
        title: title,
        closeText: "Click here to close",
        center: true,
        fixed: true,
        draggable: false,
        modal: true,
        width: w,
        height: h,
        behaviours: function() {
            var id = $(arguments[0]).attr('class');
            if (id = 'boxy_class') {
                $(arguments[0]).html('<iframe src="' + url + '"></iframe>');
            }
        }
    }).resize(this.width, this.height);

}
