﻿
function AttachframeFancybox(element,width, height) {
    if (element.length > 0) {
        element.fancybox({
            'hideOnContentClick': false,
            'width': width,
            'height': height,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'overlayShow': true,
            'type': 'iframe'
        });
    }
}


function AttachImageFancybox(element) {
    if (element.length > 0) {
        element.fancybox({
            'overlayShow': false,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic'
        });
    }
}



function CloseFancybox() {
    parent.$.fancybox.close();
}

