document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:443/linkies");
blenza_setthumbs("23Nov2013", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MjNub3YyMDEz", "1");
blenza_setcolor("default");
blenza_setExpires("6 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("23Nov2013");
blenza_linkies("thumb","pixiescraftyworkshop","23Nov2013","1942131629",3,
[
// MjNub3YyMDEz
["9624366","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com/",null,1385275332],
["9624368","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/2013/11/how-glue-on-ink-pad-3d-vellum-card.html",null,1385275394],
["9624779","Eve","http://thepurplepaperpuncher.blogspot.co.uk/2013/11/full-of-surprises.html",null,1385292105],
["9624977","Sandra H","http://sandra-nanagramps.blogspot.co.uk/2013/11/l-bought-up-all-candi.html",null,1385300248],
["9625115","Sarah","http://sazzledazzlecrafts.blogspot.co.uk/2013/11/christmas-birdies.html",null,1385303460],
["9625215","kanda","http://kandacreativemoments.blogspot.co.uk/2013/11/happy-birthday-star.html",null,1385307010],
["9625339","Hazel ","http://craftyhazelnut.blogspot.co.uk/2013/11/turquoise-and-brown-christmas.html",null,1385310828],
["9625377","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2013/11/a-fun-day-and-some-cards-of-course.html",null,1385311942],
["9625498","Jules","http://jules-alwayswithaheart.blogspot.co.uk/2013/11/snippet-playground-week-100.html",null,1385315286],
["9625527","Carol L","http://ourlittleinspirations.blogspot.com/2013/11/owh-cards.html",null,1385316077],
["9625609","Darnell","http://www.djkardkreations.com/2013/11/birthday-birthday-nbus-74-psp-100.html",null,1385318413],
["9625690","Susanne V.","http://keepintouchcards.blogspot.com/2013/11/leftovers.html",null,1385320780],
["9625756","Jenny Lawrence.","http://cardsarus.blogspot.co.uk/2013/11/a-little-box.html",null,1385323577],
["9625885","Elizabeth","http://silverscrappers.blogspot.co.uk/2013/11/sunday-snippets-and-snippets-of-snippets.html",null,1385328669],
["9625889","Eve","http://thepurplepaperpuncher.blogspot.co.uk/2013/11/for-birds.html",null,1385328847],
["9625953","Sue J ","http://olliesmam.blogspot.co.uk/2013/11/cuddles.html",null,1385332716],
["9626096","Hettie","http://hettiecraftcz.blogspot.co.uk/2013/11/rudolph-day-last-one-of-2013.html",null,1385339904],
["9626179","Karen P","http://stampinginpink.blogspot.co.uk/2013/11/oh-christmas-scene.html",null,1385344496],
["9626282","Scrappymo ","http://scrapsoflifebyscrappymo.blogspot.ca/2013/11/november-rudolph-day-owl-have-another.html",null,1385349868],
["9626610","Kath","http://myplainandsimple.blogspot.co.uk/2013/11/rudolph-says-its-final-countdown.html",null,1385369582],
["9626668","Hazel ","http://craftyhazelnut.blogspot.co.uk/2013/11/the-cheerful-stamp-pad-challenge-74.html",null,1385373229],
["9626700","Fiona","http://flossbites-cardmaking.blogspot.co.uk/2013/11/can-we-reach-christmas-card.html",null,1385375211],
["9626858","sharon hudson","http://craftyhugs.blogspot.co.uk/2013/11/new-challenge-over-at-fitztown-blog.html",null,1385383302],
["9626902","Bonnie","http://bon2stamp.blogspot.com/2013/11/merry-monday-vanilla-suede.html",null,1385384881],
["9627134","Lynn Hayes","http://creativecraftsbylynn.blogspot.com/2013/11/ho-ho-and-ho.html",null,1385389977],
["9627445","IRENE","http://alloccasionscards.blogspot.co.uk/2013/11/anniversary-wishes.html",null,1385395293],
["9627725","Claire","http://mycardworld.blogspot.ie/2013/11/christmas-card-with-su-owl-punch.html",null,1385400249],
["9627753","Sarah","http://sazzledazzlecrafts.blogspot.co.uk/2013/11/stars-and-stripes.html",null,1385400740],
["9628086","Karen P","http://stampinginpink.blogspot.co.uk/2013/11/mondays-offering-for-challenges-is.html",null,1385408923],
["9628197","Kate P.","http://manualidades-mamapez5.blogspot.com.es/2013/11/the-final-rudolph-day-for-2013.html",null,1385411554],
["9628385","Carol L","http://ourlittleinspirations.blogspot.com/2013/11/jumping-ahead.html",null,1385416256],
["9628539","Jenny Lawrence.","http://cardsarus.blogspot.co.uk/2013/11/christening-card-and-box.html",null,1385420209],
["9628845","Cathy R","http://www.cathyscardspot.blogspot.com.au/2013/11/floral-basket.html",null,1385428305],
["9629454","Greta H","http://ggnursecreations.blogspot.com/2013/11/birthday-wreath.html",null,1385445490],
["9629655","Sarah-J W","http://mallowscrafts.blogspot.co.uk/2013/11/ribbon-lace.html",null,1385453435],
["9629912","Jules","http://jules-alwayswithaheart.blogspot.co.uk/2013/11/more-snippets-bite-dust.html",null,1385465750],
["9631614","Sue","http://susanscardcreations.blogspot.co.uk/2013/11/santa-spreading-joy.html",null,1385499956],
["9631674","Jean","http://wwwmycraftycornerblog.blogspot.co.uk/2013/11/fireworks.html",null,1385501587],
["9631789","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2013/11/all-that-glitters.html",null,1385505091],
["9632434","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2013/11/kissmoose-meets-deconstructed-sketch-127.html",null,1385520322],
["9632700","Scrappymo ","http://scrapsoflifebyscrappymo.blogspot.ca/2013/11/a-little-bit-sketchy.html",null,1385528764],
["9633092","Wipso","http://wipso-astitchintime.blogspot.co.uk/2013/11/woyww_27.html",null,1385539685],
["9633562","Carol L","http://ourlittleinspirations.blogspot.com/2013/11/snippets-greens.html",null,1385555878],
["9633569","Viv","http://vivsvisuals.blogspot.co.uk/2013/11/i-was-delighted-to-see-some-new.html",null,1385556043],
["9633608","Brenda B","http://butlersabroad.wordpress.com/2013/11/27/warmth-for-winter/",null,1385557374],
["9633649","IRENE","http://alloccasionscards.blogspot.co.uk/2013/11/punches-and-dies.html",null,1385558561],
["9633739","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2013/11/cuttlebug-mania-tuesday-be-thankful.html",null,1385560543],
["9634090","JennyH","http://jennyhurleycards.blogspot.com.au/2013/11/vintage-santa.html",null,1385567145],
["9634222","kanda","http://kandacreativemoments.blogspot.co.uk/2013/11/christmas-with-snow-family.html",null,1385570159],
["9634228","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2013/11/golf-it-takes-balls.html",null,1385570390],
["9634567","Lynn","http://lynnscraftycorner.blogspot.co.uk/2013/11/snippets-playground-week-100.html",null,1385580965],
["9634687","Genny","http://vixenvarg.blogspot.co.uk/2013/11/winter-handbag.html",null,1385585128],
["9634970","Julie C","http://cherrywingscards.blogspot.co.uk/2013/11/its-my-birthday.html",null,1385600342],
["9635431","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2013/11/ride-em-cowboy.html",null,1385625320],
["9635469","Scrappymo ","http://scrapsoflifebyscrappymo.blogspot.ca/2013/11/lets-talk-turkey.html",null,1385627220],
["9635512","Anesha","http://skippereva.blogspot.co.uk/2013/11/snippet-card.html",null,1385629896],
["9635632","Wipso","http://wipso-astitchintime.blogspot.co.uk/2013/11/my-advent-calendar-christmas-tree.html",null,1385638373],
["9635641","kanda","http://kandacreativemoments.blogspot.co.uk/2013/11/mulberry-wood-christmas.html",null,1385638878],
["9635804","Hettie","http://hettiecraftcz.blogspot.co.uk/2013/11/christmas-cards.html",null,1385645433],
["9635947","Eve","http://thepurplepaperpuncher.blogspot.co.uk/2013/11/stitched-sweet-blossom.html",null,1385652600],
["9636074","Laura","http://beadsbuttonsandbirds.blogspot.co.uk/2013/11/contemporary-christmas-card.html",null,1385659027],
["9636099","Pat","http://colourfulcardcreations.blogspot.co.uk/2013/11/white-christmas.html",null,1385660593],
["9636258","Lynn","http://lynnscraftycorner.blogspot.co.uk/2013/11/snippets-card-no-2.html",null,1385666347],
["9636295","Jenny Lawrence.","http://cardsarus.blogspot.co.uk/2013/11/more-snippets-boxes.html",null,1385667964],
["9636450","Karen P","http://stampinginpink.blogspot.co.uk/2013/11/shabby-chic-style-snowflakes-and.html",null,1385675357],
["9636480","Kath","http://myplainandsimple.blogspot.co.uk/2013/11/snippets-100th-challenge.html",null,1385677211],
["9636909","SARN","http://stampingforpleasure.blogspot.co.uk/2013/11/snippets-playground-week-100-woot-woot.html",null,1385709585],
["9636929","Twiglet","http://twiglet5.blogspot.co.uk/2013/11/finished-by-friday-and-smiley-snippets.html",null,1385710877],
["9636939","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2013/11/sailing.html",null,1385711516],
["9636974","Amanda","http://pandaspaperplaytime.blogspot.co.uk/2013/11/stamping-bella-uptown-girls-number-1.html",null,1385713478],
["9637005","Jules","http://jules-alwayswithaheart.blogspot.co.uk/2013/11/mission-complete.html",null,1385715441],
["9637049","Laura","http://beadsbuttonsandbirds.blogspot.co.uk/2013/11/two-more-christmas-cards.html",null,1385718106],
["9637099","JennyH","http://jennyhurleycards.blogspot.com.au/2013/11/cardinal-wreath.html",null,1385720617],
["9637460","Annie","http://craftworkblog.blogspot.co.uk/2013/11/first-christmas-card.html",null,1385797500],
["9637519","Sue","http://susanscardcreations.blogspot.co.uk/2013/11/small-santa.html",null,1385742438],
["9637850","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2013/11/cd-sunday-f-is-for.html",null,1385755217],
["9638021","Maudieroff","http://roffeycreations.blogspot.com.au/2013/11/ornamental-christmas.html",null,1385762109],
["9638031","Sally H","http://sal-utations.blogspot.co.uk/2013/11/sneaking-into-playground.html",null,1385762764],
["9638085","Hettie","http://hettiecraftcz.blogspot.co.uk/2013/11/christmas-cards-ii-look-no-ink.html",null,1385765753],
["9638181","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2013/11/festive-friday-and-stamplorations.html",null,1385772439],
["9638221","Princess Judy","http://princess-judy.blogspot.com/2013/11/strips.html",null,1385774743],
["9638315","JennyH","http://jennyhurleycards.blogspot.com.au/2013/11/joyful-wishes.html",null,1385782408],
["9638689","Kathyk","http://purpliciousprincessdiaries.blogspot.co.uk/2013/11/saturday-chatter-day-and-challenge-day.html",null,1385806307],
["9639048","IKE","http://suzy-ikesworld.blogspot.gr/2013/11/spyders-snow-angel-bear.html",null,1385821350],
["9639078","IKE","http://suzy-ikesworld.blogspot.gr/2013/11/chrimbo-tiddlies.html",null,1385821870],
["9639433","Bonnie","http://bon2stamp.blogspot.com/2013/11/watercolor-poinsettia-for-queen-beverly.html",null,1385830530],
["9639486","SARN (2)","http://stampingforpleasure.blogspot.co.uk/2013/11/snippets-week-100-2nd-card.html",null,1385831742],
["9639488","SARN (3)","http://stampingforpleasure.blogspot.co.uk/2013/11/snippets-playground-week-100-3rd-card.html",null,1385831791],
["9639777","Ethan","http://myplainandsimple.blogspot.co.uk/2013/11/ethans-card.html",null,1385840414],
["9639896","Debs Willis ","http://debwillisdesigns.blogspot.co.uk/2013/11/winter-birthdays.html",null,1385843636],
["9639900","Liz","http://grannycreations.blogspot.co.uk/2013/11/while-shepherds-watched.html",null,1385843716],
["9639917","Liz","http://grannycreations.blogspot.co.uk/2013/11/christmas-tree.html",null,1385844271],
["9640375","ponygirl06","http://theponygirl06.blogspot.ca/2013/11/another-horse-card.html",null,1385870421],
["9640608","The Crafty Laydee","http://thecraftylaydee.blogspot.co.uk/2013/12/a-snippety-christmas-make.html",null,1385883247],
["9640780","Debs Willis ","http://debwillisdesigns.blogspot.co.uk/2013/12/more-snippets.html",null,1385889509],
["9640786","Debs Willis ","http://debwillisdesigns.blogspot.com/2013/12/yet-more-snippets.html",null,1385889717],
["9640820","Julie C","http://www.cherrywingscards.blogspot.com",null,1385891185],
["9640906","starcyl","http://starcylcrackers.blogspot.co.uk/2013/12/a-prima-doll.html",null,1385894899],
["9640910","Roolz Breaker","http://stampingforpleasure.blogspot.co.uk/2013/12/snippets-playground-week-100.html",null,1385895178],
["9640917","Miss D - I make the Roolz :)","http://pixiescraftyworkshop.blogspot.co.uk/2013/12/pixies-snippets-playground-week-100-is.htmlk/2013/11/when-boat-comes-in.html",null,1385895507],
["9640918","Roolz Breaker (2)","http://stampingforpleasure.blogspot.co.uk/2013/12/snippets-week-100-oldie-but-goodie.html",null,1385895524],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}