function popUp(id, URL, width, height, scrollbars) {
	var new_win;
	var scrollbars;
	
	scrollbars = (scrollbars) ? "1" : "0";
	new_win = window.open(URL, id, "toolbar=0,scrollbars=" + scrollbars + ",location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height);
	
	if (window.focus) {new_win.focus()}
}

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox();
  $('a[rel*=facebox-cap]').mousedown(function() {
        var caption = $(this).attr('title');
        $().one('reveal.facebox', function() {
                $('<p class="caption">' + caption + '</p>').appendTo('.content');
                });
        }); 
}) 