function CreateBookmarkLink(title) {

   /*
    * Allow people to bookmark the page. <a href="javascript:CreateBookmarkLink('NARS Cosmetics');">Add NARS as Favorite</a>
    */
   url = document.location;
   if (window.sidebar) { // Mozilla Firefox Bookmark
      window.sidebar.addPanel("NARS Cosmetics", "http://www.narscosmetics.com/", "");
   } else if( window.external ) { // IE Favorite
      window.external.AddFavorite( "http://www.narscosmetics.com/", "NARS Cosmetics");
   } else if(window.opera && window.print) { // Opera Hotlist
      return true;
   }
}

function getQuerystring(key, default_)
{
  if (default_==null) default_="";
  key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
  var qs = regex.exec(window.location.href);
  if(qs == null)
    return default_;
  else
    return qs[1];
}
