  var allDialogs = [];
  var seq = 0;
  function create(options) {
  options = $.extend({title: "Stherb Holiday Closure Announcement"}, options || {});
  var dialog = new Boxy("<p> Stherb head office and warehouse will be closed over the Thai New Year\'s Day or the Songkran <br>Water Festival on April 9th, 2011 through April 17th, 2011. We will re-open for business on Monday, <br>April 18th, 2011. Operational procedures such as order processing, shipping, etc., which are <br>associated with this time of year, will not be available during the holiday closure. <br><br>Please kindly note that any order making within the midnight of April 7th, 2011, is subjected to send <br>on April 8th, 2011. If you place any order on April 8th, 2011 or later, the order will be processed <br>after the holiday closure. Please make sure that you have all of your orders done before the period <br>mentioned to prevent any delay of shipment. <br><br>***Time and date mentioned above are Bangkok Local Time, Standard time zone: UTC/GMT +7 hours.  <br><br>Thank you and best regards, <br><br>Saintherbs.com</p>", options);
  allDialogs.push(dialog);
  return false;
  }

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadornot(){
if (get_cookie('jkpopup')==''){
create({modal: true, fixed: false});
document.cookie="jkpopup=yes"
}
}
