function close(e) {
    if(e) {
        if($(e)) {
            $('#'+e).addClass('not_visible');
        }
    }
}


function openlightbox(url, title, width, height) {

    if(!height) {
        height = 320;
    }
    if(!width) {
        width = 420;
    }


    jQuery.fancybox({
        'href': url,
        'title': title,
        'opacity': true,
        'padding': 25,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'overlayOpacity': '0.8',
        'overlayColor': '#FFF',
        'titlePosition': 'inside',
        'type': 'iframe',
        'width': width,
        'height': height
    });
}

