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("23Jan2016", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MjNqYW4yMDE2", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("23Jan2016");
blenza_linkies("thumb","pixiescraftyworkshop","23Jan2016","526222428",3,
[
// MjNqYW4yMDE2
["10742105","Carol L","http://ourlittleinspirations.blogspot.com/2016/01/valentines-for-kids.html",null,1453598322],
["10742190","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/01/baby-its-cold-outside.html",null,1453608799],
["10742232","Annie","http://craftworkblog.blogspot.co.uk/2016/01/sentimental-sunday.html",null,1453619487],
["10742245","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2016/01/masculine.html",null,1453622136],
["10742266","Lia","http://liadesignandso.blogspot.nl/2016/01/for-you.html",null,1453625058],
["10742302","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2016/01/lazy-sunday.html",null,1453629957],
["10742310","SARN","http://stampingforpleasure.blogspot.co.uk/2016/01/snippets-playground-hooch.html",null,1453630509],
["10742317","Anne F","http://stampsandpaper.blogspot.co.uk/2016/01/pixies-snippets-challenge-week-213.html ",null,1453632181],
["10742340","Kath","http://handmadebykath.blogspot.co.uk/2016/01/fairy-silhouette.html",null,1453636009],
["10742375","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/01/lunch-at-31st-floor-of-shard.html",null,1453639602],
["10742461","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2016/01/pixie-snippets-playground-week-213.html",null,1453645402],
["10742480","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/01/do-you-want-to-build-snowman.html",null,1453647449],
["10742511","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/01/snippets-playground-week-213.html",null,1453650409],
["10742518","Kath","http://myplainandsimple.blogspot.co.uk/2016/01/allsorts-challenge-week-347-valentine.html",null,1453651173],
["10742529","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/01/sleigh-time.html",null,1453652633],
["10742583","Mary Anne K.","http://lakesidestamping.blogspot.com/2016/01/everyone-loves-critters.html",null,1453657343],
["10742617","kanda","http://kandacreativemoments.blogspot.co.uk/2016/01/valentine.html",null,1453661353],
["10742619","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/01/mouse-cocoa.html",null,1453661457],
["10742628","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/01/bluebird-hot-cocoa.html",null,1453662840],
["10742716","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2016/01/piccola-volpe.html",null,1453670257],
["10742781","Loll","http://www.stampingwithloll.com/2016/01/in-studio-with-friends.html",null,1453675597],
["10742806","Elizabeth","http://silverscrappers.blogspot.co.uk/2016/01/snippet-sunday-forever-friends.html",null,1453677045],
["10743039","Lia","http://liadesignandso.blogspot.nl/2016/01/music.html",null,1453708149],
["10743040","lilian B","http://lillyb46.blogspot.co.uk/2016/01/monday_25.html",null,1453708397],
["10743043","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2016/01/welcome-to-start-of-another-week.html",null,1453708903],
["10743077","linby","http://craftylinby.blogspot.co.uk/2016/01/january-16-rudolph-day.html",null,1453713388],
["10743110","Sam / Whisper","http://whisperscards.blogspot.co.uk/2016/01/christmas-at-my-window.html",null,1453718410],
["10743120","Sandma","http://sandmacards.blogspot.co.uk/2016/01/its-rudolph-day.html",null,1453719764],
["10743175","Elizabeth","http://silverscrappers.blogspot.co.uk/2016/01/flower-photo-cards.html",null,1453725748],
["10743183","Swissie","http://livfrische48.blogspot.ch/2016/01/birthday-card-with-tiny-flowers.html",null,1453726819],
["10743189","aNNie","http://thejourneyisthestarthere.blogspot.com.au/2016/01/sydney.html",null,1453727343],
["10743437","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/01/rudolph-day-challenge.html",null,1453748279],
["10743486","Eve","http://evemariemakes.blogspot.co.uk/2016/01/happy-home.html",null,1453753053],
["10743530","treebug","http://www.treebug.org/2016/01/vintage-za-obletnico-poroke.html",null,1453756523],
["10743543","Mary H.","http://carolinacardsbymaryh.blogspot.com/2016/01/psx-heart-for-valentines-day.html",null,1453757231],
["10743589","JoanW","http://latenightstamping.blogspot.co.uk/2016/01/let-it-snow-or-not.html",null,1453761933],
["10743617","Brenda L.","http://friendscraftinwithfriends.blogspot.com/2016/01/snowflakes-lots-and-lots-of-snowflakes.html",null,1453763743],
["10743664","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/01/all-blues.html",null,1453767516],
["10743678","Kate P.","http://manualidades-mamapez5.blogspot.co.uk/2016/01/fun-in-snow-for-rudolph-day.html",null,1453769083],
["10743695","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/01/altered-treat-jar-with-butterfly.html",null,1453771398],
["10743725","Dana: Crafty Couple","http://craftycouple.blogspot.com/2016/01/fooore.html",null,1453775195],
["10743751","Maura","http://www.splitcoaststampers.com/gallery/photo/2696745?&cat=500&ppuser=146353hoto/2694911?nocache=1",null,1453782146],
["10743807","Darnell","http://www.djkardkreations.com/2016/01/wc-homework-i.html",null,1453793048],
["10743808","Janice","http://mycraftroommakes.blogspot.co.uk/2016/01/birthday-balloon-card.html",null,1453793083],
["10743809","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/2016/01/happy-austrlalia-day-christmas-cards.html",null,1453793239],
["10743810","Shaz in Oz.x no.2","http://calligraphycards-shazinoz.blogspot.com.au/",null,1453793272],
["10743818","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2016/01/bits-and-bobs.html",null,1453794297],
["10743905","Jane Willis","http://onionsandpaper.blogspot.co.uk/2016/01/spots-andor-stripes-at-cardz-4-guyz.html",null,1453805888],
["10743934","Carol L","http://ourlittleinspirations.blogspot.com/2016/01/hexagon-fun.html",null,1453808891],
["10744180","Eemeli","http://eemelike.blogspot.fi/2016/01/dt-crafting-from-heart-96.html",null,1453824180],
["10744186","Jenny Lawrence","http://cardsarus.blogspot.co.uk/2016/01/butterfly-challenge-no-46-i-for-inks.html",null,1453824740],
["10744195","Sue","http://susanscardcreations.blogspot.co.uk/2016/01/watercolour-wings-birthday.html",null,1453825914],
["10744219","CraftDee Donna","http://craftdeedonna.blogspot.com.au/2016/01/the-ghost-of-christmas-past.html",null,1453827592],
["10744220","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/01/mellow-monday.html",null,1453827696],
["10744338","Valerija","http://moje-veselje.blogspot.si/2016/01/metuljckasta.html",null,1453836716],
["10744410","Jackie T","http://tinyrosecr.blogspot.co.uk/2016/01/easter-card.html",null,1453844816],
["10744502","Greta H","http://ggnursecreations.blogspot.com/2016/01/gilding-flakes.html",null,1453851161],
["10744515","treebug","http://www.treebug.org/2016/01/veliko-sonca-brez-konca.html",null,1453851809],
["10744830","Shaz in oz.x no.3","http://calligraphycards-shazinoz.blogspot.com.au/2016/01/woyww-cards-serviette-with-cling-wrap.html",null,1453875255],
["10744914","Brenda","http://stamping-fantasies.blogspot.co.uk/2016/01/tattered-lace-winners-rudolph-snippet.html",null,1453882534],
["10745044","Jane Willis","http://onionsandpaper.blogspot.co.uk/2016/01/broken-crayons.html",null,1453894818],
["10745079","Diane H","http://nelliesnest.blogspot.com/2016/01/love-letters.html",null,1453896629],
["10745095","kanda","http://kandacreativemoments.blogspot.co.uk/2016/01/rudolph-robins.html",null,1453897103],
["10745361","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/01/acetate-again.html",null,1453906786],
["10745400","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/01/very-rustic.html",null,1453908591],
["10745782","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/01/two-cards-today.html",null,1453928337],
["10745801","Karen","http://karenscrafting.blogspot.co.uk/2016/01/merging-sketch-and-rudolph-day.html",null,1453929448],
["10746054","karenladd","https://www.flickr.com/photos/33235863@N08/24658876355/in/dateposted-public/",null,1453956630],
["10746150","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2016/01/flowers.html",null,1453971235],
["10746225","Helen","http://helenscrafthaven.blogspot.co.uk/2016/01/rainbow-chevrons.html",null,1453975482],
["10746230","April","http://paperlilyleaf.blogspot.co.uk/2016/01/wildflower-fields.html",null,1453976797],
["10746239","Annie","http://craftworkblog.blogspot.co.uk/2016/01/oh-my-nobody-loves-me.html",null,1453977879],
["10746304","Sandy J","http://stampingwriter.blogspot.com/2016/01/cookie-challenge-36.html",null,1453986295],
["10746476","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2016/01/january-rudolph-day.html",null,1453996063],
["10746478","Lynn Hayes","http://creativecraftsbylynn.blogspot.com/2016/01/valentine-bandit_28.html",null,1453996140],
["10746556","Cara @ Crafting Bunnies","http://craftingbunnies.blogspot.co.uk/2016/01/another-birdcage.html",null,1454001281],
["10746594","Kath","http://handmadebykath.blogspot.co.uk/2016/01/baby-its-cold-outside.html",null,1454004673],
["10746780","treebug","http://www.treebug.org/2016/01/pomladno-roza-rozasta.html",null,1454016221],
["10746830","Valerija","http://moje-veselje.blogspot.si/2016/01/praznicna-misel-v-vintage-izvebi.html",null,1454019522],
["10746878","Elizabeth","http://silverscrappers.blogspot.co.uk/2016/01/rudolph-day-countdown-to-christmas.html",null,1454021433],
["10746902","Karen #2","http://karenscrafting.blogspot.co.uk/2016/01/smooching-and-mixed-media-and-cas-and.html",null,1454022239],
["10746941","Greta H (2)","http://ggnursecreations.blogspot.com/2016/01/first-christmas-cards-of-2016.html",null,1454025928],
["10747083","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2016/01/happy-4th-birthday.html",null,1454038448],
["10747143","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/01/wintertime-masculine-birthday-card.html",null,1454046666],
["10747221","lilian B","http://lillyb46.blogspot.co.uk/2016/01/weekend-again.html",null,1454056873],
["10747222","karenladd","https://www.flickr.com/photos/33235863@N08/24057351193/in/dateposted-public/",null,1454056672],
["10747282","Scrappymo","http://scrapsoflifebyscrappymo.blogspot.ca/2016/01/january-rudolph-days-challenge-and-meet.html",null,1454062372],
["10747296","Susan Renshaw","http://susanrenshaw0404.blogspot.co.uk/2016/01/wicked-wednesday-challenge-194-you.html",null,1454064843],
["10747323","Carol L","http://ourlittleinspirations.blogspot.com/2016/01/valentine-treat-boxes.html",null,1454067492],
["10747453","Viv","http://vivsvisuals.blogspot.co.uk/2016/01/what-happened-to-this-week.html",null,1454075258],
["10747531","April","http://paperlilyleaf.blogspot.co.uk/2016/01/white-on-white-card.html",null,1454080892],
["10747653","Alison C","http://cranberryandeggplant.blogspot.co.uk/2016/01/little-houses.html",null,1454091938],
["10747699","Heather Mills","http://wirewrapture.blogspot.com/2016/01/cutest-tags-ever.html",null,1454095472],
["10747764","Jackie T","http://tinyrosecr.blogspot.co.uk/2016/01/my-first-christmas-card-of-2016.html",null,1454099861],
["10747780","laurie","http://stampingupnorthwithlaurie.blogspot.com/2016/01/taylored-expression-punny-love-valentine.html",null,1454101386],
["10747798","Hazel (My Card Attic)","http://www.mycardattic.co.uk/2016/01/two-challenges.html",null,1454102800],
["10747799","Karen #3","http://karenscrafting.blogspot.co.uk/2016/01/another-sketch-that-is-mixed-media-cas.html",null,1454103109],
["10747809","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/01/whisper-wish.html",null,1454104437],
["10748056","Cathy R","http://cathyscardspot.blogspot.com.au/2016/01/rusting-powder-on-corrugated-scrap.html",null,1454146218],
["10748069","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/01/suzy-bees-bloomin-challenge-115.html",null,1454150100],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}