var default_title = "";

var default_width = 400;
var default_height = 300;

$(document).ready(function(){
	$('.dialogbox').each(function(){
		$(this).bind("click", function(e){
			var href = $(e.target).attr("href");
			if (href.substring(0, 11) == "#DB_inline?") {
				var href = href.replace("#DB_inline?", "");
				var href_s = href.split("&");
				var dialog_width = default_width;
				var dialog_height = default_height;
				var inline_id = "";
				var title = "";
				if ($(e.target).attr("title") != "")
					title = $(e.target).attr("title");
				else
					title = default_title;
				for (i=0; i<href_s.length; i++) {
					attr = href_s[i].split("=");
					if (attr[0] == "width") {
						dialog_width = parseInt(attr[1]);
					}
					if (attr[0] == "height") {
						dialog_height = parseInt(attr[1]);
					}
					if (attr[0] == "inline_id") {
						inline_id = attr[1];
					}
				}
				
				if (inline_id != "") {
					$("#"+inline_id).dialog({title: title, autoOpen: false, buttons: { 'OK' : function(){$(this).dialog('close');} }, draggable: true, height: dialog_height, width: dialog_width, modal: true, position: 'center', resizable: false});
					$("#"+inline_id).dialog('open');
				}
			}
		});
	});
});