  function displayContent(content, title, scrollable) {
      $("#cdbox").html("<img src='/img/loading.gif' />").load(content, function(){
        $('#contentDisplay div.window').scrollTop(0);
      });
      $("#cdtitle").html(title);
      if( scrollable !== undefined && scrollable )
        $("#contentDisplay").addClass('jqmScroll');
      else
        $("#contentDisplay").removeClass('jqmScroll');
      $("#contentDisplay").jqmShow();
  }

  function displayIframeContent(content, title, height) {
      if( height === undefined || height === null )
        height = '150px';

      $("#cdbox").html("<iframe src='"+content+"' width='95%' height='"+height+"' style='border:none; margin:0; padding:0; overflow:hidden'  marginheight='0' marginwidth='0' frameborder='0' />");
      $("#cdtitle").html(title);
      $('#contentDisplay div.window').scrollTop(0);
      $("#contentDisplay").removeClass('jqmScroll');
      $("#contentDisplay").jqmShow();
  }
