
$(function(){$(".popup:first td").each(function(){if($(this).css('background-image')!='none'){$("<img>").attr('src',extractUrl($(this).css('background-image')));}});$(".popup").each(function(){if($(this).parent().hasClass('popup_wide')){var popupWidth=650;}else if($(this).parent().hasClass('popup_narrow')){var popupWidth=330;}else if($(this).parent().hasClass('popup_extra_wide')){var popupWidth=800;}else{var popupWidth=500;}
$(this).dialog({autoOpen:$(this).hasClass('auto_open'),bgiframe:true,modal:false,width:popupWidth,height:'auto',modal:true,position:['center','center'],closeOnEscape:true,buttons:{},open:function(){$('.ui-widget-overlay').one('click',function(){$(this).next('.ui-dialog').children('.ui-dialog-content').dialog('close');});}});});$('.popup_handle').live('click',function(e){open_bubble(this.id.split('_').slice(2).join('_'));return false;});});function close_bubble(e){$(e).parents('.popup').dialog('close');return false;}
function open_bubble(popup_id){$('.popup').dialog('close');var dialog=$("#popup_"+popup_id).dialog('open');return false;}
function remember_close_bubble(e){$.post("/layout/help_popup/remember_close",{help_popup_id:$(e).parents('.popup, .inline_popup').children("input[name=help_popup_id]").val()});$(e).parents('.popup, .inline_popup').dialog('close');return false;}