function hidePopupPanel() {
  jQuery('.popup-panel').fadeTo('normal',0,function() {
    jQuery('.popup-panel').remove();
  });
}
  
function showPopupPanel() {
  jQuery('.popup-panel').remove();

  var panel = document.createElement("div");

  if (jQuery.browser.msie && jQuery.browser.version < 7) {
	jQuery(panel).height(jQuery('body').height());
	jQuery(panel).css('position', 'absolute');
  } else {
	jQuery(panel).css('position', 'fixed');
	jQuery(panel).css('bottom', '0px');
  }
  
  jQuery(panel).css('top', '0px');
  jQuery(panel).css('left', '0px');
  jQuery(panel).css('z-index', '5001');
  
  jQuery(panel).css('background-color', '#fff');
  jQuery(panel).fadeTo(0, 0);
  jQuery(panel).addClass('popup-panel');
  jQuery('body').append(panel);
  jQuery('.popup-panel').each(function() {
    jQuery(this).css('width','100%');
    jQuery(this).fadeTo('slow',0.3);
  });
}
