Boxen Plugin
$('.boxen').boxen();
$('#boxen_google').boxen('http://www.google.com/');
$('#boxen_search').boxen('http://www.google.com/search', {
    urlParams: {
        q: 'Bimbo Deluxe'
    }
});
$('#boxen_map').click(function(e){
    var address = $(this).text();
    $.Boxen.open(this, {
        urlAttribute: null,
        postOpen: function(ca) {
            var map = new GMap2(ca);
            var geocoder = new GClientGeocoder();
            geocoder.getLatLng(address, function(point) {
                map.setCenter(point, 13);
                map.setUIToDefault();
                var marker = new GMarker(point);
                map.addOverlay(marker);
                marker.openInfoWindowHtml(address.replace(/,\s*/g, '<br>'));
            });
        }
    });
    return false;
});
            

Click the links below to open Lightbox style content.

Option and default values

urlParams: {},
showTitleBar: true,
showCloseButton: true,
title: null,
titleAttribute: 'title',
closeButtonText: null,
width: 600,
height: 500,
url: null,
urlAttribute: 'href',
overlayOpacity: 0.8,
modal: false,
postOpen: function(contentAreaElement) {},
postClose: function() {}