function purrNotify(title, text) {
  var purr_noticeTop    =  '<div class="purr-notice">'+ '<div class="purr-notice-body">'+'<img src="Framework4.0/Jquery-plugin/jquery-purr/purr-example/info.png" alt="" />';
  var purr_noticeTitle  = '<h3>' + title + '</h3>';
  var purr_noticeText   = '<p>' + text + '</p>';
  var purr_noticebottom = '</div>' + '<div class="purr-notice-bottom">' + '</div>' + '</div>';
  var purr_notice = purr_noticeTop + purr_noticeTitle + purr_noticeText + purr_noticebottom;
  $( purr_notice ).purr({usingTransparentPNG: true});
  return false;
}
