if (typeof dialogUtil == 'undefined') { dialogUtil = {}; } dialogUtil = {}; dialogUtil.showDialog = function(id){ $('div.screen-wrap section').hide().filter('#' + id).show(); $('div.screen').height($('body').height()); $('div.screen-wrap').show(); }; dialogUtil.hideDialog = function() { $('div.screen-wrap').hide(); }; dialogUtil.showDialog2 = function(id){ $('div.screen-wrap2 section').hide().filter('#' + id).show(); $('div.screen').height($('body').height()); $('div.screen-wrap2').show(); }; dialogUtil.hideDialog2 = function() { $('div.screen-wrap2').hide(); }; dialogUtil.showDialog3 = function(id){ $('div.screen-wrap3 section').hide().filter('#' + id).show(); $('div.screen').height($('body').height()); $('div.screen-wrap3').show(); }; dialogUtil.hideDialog3 = function() { $('div.screen-wrap3').hide(); };