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("30Jan2016", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MzBqYW4yMDE2", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("30Jan2016");
blenza_linkies("thumb","pixiescraftyworkshop","30Jan2016","1844754770",3,
[
// MzBqYW4yMDE2
["10748638","treebug","http://www.treebug.org/2016/01/prikupna-snezaka.html",null,1454219626],
["10748678","Lia","http://liadesignandso.blogspot.nl/2016/01/vlinders_30.html",null,1454228872],
["10748679","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2016/01/welcome-to-last-day-of-january-did-you.html",null,1454228976],
["10748697","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2016/01/a-busy-week.html",null,1454231514],
["10748709","SARN","http://www.stampingforpleasure.blogspot.co.uk/2016/01/a-latte-snippets.html",null,1454233794],
["10748722","Cathy R","http://cathyscardspot.blogspot.com.au/2016/01/mini-canvas-with-cogs-and-rusting-powder.html",null,1454235554],
["10748735","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/01/happy-mail.html",null,1454237181],
["10748752","Valerija","http://moje-veselje.blogspot.si/2016/01/knjiga-za-diplomo.html",null,1454238479],
["10748774","Kath","http://handmadebykath.blogspot.co.uk/2016/01/happy-christmas.html",null,1454241356],
["10748798","Sam / Whisper","http://whisperscards.blogspot.co.uk/2016/01/hares-to-you.html",null,1454244256],
["10748829","Carol L","http://ourlittleinspirations.blogspot.com/2016/01/woodlands-thank-you.html",null,1454247540],
["10748865","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/01/all-snippets.html",null,1454250690],
["10749111","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2016/01/baby-boy-cards.html",null,1454274104],
["10749163","Hettie","http://hettiecraftcz.blogspot.co.uk/2016/01/first-rudolph-day-of-2016.html",null,1454277054],
["10749168","Karen","http://karenscrafting.blogspot.co.uk/2016/01/time-for-tag.html",null,1454277420],
["10749253","Hazel (My Card Attic)","http://www.mycardattic.co.uk/2016/02/playing-with-alcohol-inks-two-challenges.html",null,1454290020],
["10749323","CraftDee Donna","http://craftdeedonna.blogspot.com.au/2016/02/its-february-already.html",null,1454296908],
["10749652","Em Fairley","http://www.creative-em.com/2016/02/shaped-cards-for-house-of-cards.html",null,1454332782],
["10749817","Elizabeth","http://silverscrappers.blogspot.co.uk/2016/02/snow-scene-cards-altered-countdown-to.html",null,1454339671],
["10749835","Princess Judy","http://princess-judy.blogspot.com/2016/02/we-have-ourselves-reader.html",null,1454340847],
["10749889","Brenda","http://stamping-fantasies.blogspot.co.uk/2016/02/a-rainbow-of-colour.html",null,1454344741],
["10749893","Brenda","http://stamping-fantasies.blogspot.co.uk",null,1454345146],
["10749922","Janice","http://mycraftroommakes.blogspot.co.uk/2016/02/new-baby-card.html",null,1454347334],
["10749949","Bonnie","http://bon2stamp.blogspot.com/2016/02/santa-for-merry-monday.html",null,1454349515],
["10749986","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/02/snow-fun.html",null,1454352228],
["10750007","Karen #2","http://karenscrafting.blogspot.co.uk/2016/02/house-of-cards-february-challenge.html",null,1454353557],
["10750044","AJ","http://ajcreativeenergy.blogspot.com/2016/02/valentine-monkey.html",null,1454356144],
["10750045","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/01/glittered-candles.html",null,1454356311],
["10750070","kanda","http://kandacreativemoments.blogspot.co.uk/2016/02/mice-and-pink.html",null,1454357880],
["10750103","Diane H","http://nelliesnest.blogspot.com/2016/02/snippetsscraps-and-more.html",null,1454360640],
["10750234","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2016/02/blog-post.html?m=1",null,1454373287],
["10750235","Greta H","http://ggnursecreations.blogspot.com/2016/02/floral-valentine.html",null,1454373368],
["10750255","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/02/welcome-little-one.html",null,1454375422],
["10750327","Maura","http://www.splitcoaststampers.com/gallery/photo/2698400?&cat=500&ppuser=146353",null,1454383925],
["10750420","Kath","http://handmadebykath.blogspot.co.uk/2016/02/lots-of-snippets.html",null,1454399898],
["10750431","Maxine D.","http://kiwimeskreations.blogspot.co.nz/2016/02/sketched-anniversary.html",null,1454401419],
["10750544","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/02/the-kiss.html",null,1454412768],
["10750545","Jenny Lawrence","http://cardsarus.blogspot.co.uk/2016/02/snippets-birthday-card-for-my-son.html",null,1454413049],
["10750579","Louise H","http://craftingmumlouise.blogspot.co.uk/2016/01/ho-ho-ho.html",null,1454415581],
["10750626","Louise H","http://craftingmumlouise.blogspot.co.uk/2016/02/happy-birthday-football-themed.html",null,1454417546],
["10750664","Swissie","http://livfrische48.blogspot.ch/2016/02/til-ei-syglad-dame.html",null,1454420446],
["10750753","Carol L","http://ourlittleinspirations.blogspot.com/2016/02/always-in-my-heart.html",null,1454424543],
["10750871","Sunshinepen","http://groovyquail.blogspot.co.uk/2016/02/poppies-with-feathers.html",null,1454431542],
["10750913","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/02/love-and-music-is-in-air.html",null,1454435654],
["10750917","AJ","http://ajcreativeenergy.blogspot.com/2016/02/butterfly-hearts.html",null,1454435777],
["10750923","Erika Gunter","http://snappycrafts.blogspot.co.uk/2016/02/a-few-snippets-and-good-stamp.html",null,1454436109],
["10751181","treebug","http://www.treebug.org/2016/02/ena-za-lepsi-dan.html",null,1454453893],
["10751186","Christine Smith","http://ramblingsandcraft.blogspot.co.uk/2016/02/my-first-atcs.html",null,1454454193],
["10751200","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/doing-happy-dance.html",null,1454454794],
["10751271","Cornelia (fun stamping) - 2nd entry","http://fun-stamping.blogspot.com/2016/02/stamploration-inspiration-59.html",null,1454460046],
["10751400","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/02/kitties-warm-fuzzies.html",null,1454469789],
["10751433","karenladd","https://www.flickr.com/photos/33235863@N08/24417885079/in/dateposted-public/",null,1454473101],
["10751544","karenladd","https://www.flickr.com/photos/33235863@N08/24694229141/in/dateposted-public/",null,1454482486],
["10751662","Janice","http://mycraftroommakes.blogspot.co.uk/2016/02/male-birthday-card.html",null,1454491353],
["10751674","lilian B","http://lillyb46.blogspot.co.uk/2016/02/woywdw.html",null,1454492625],
["10751717","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/valentine-card.html",null,1454496414],
["10751760","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/happy-anniversary.html",null,1454497699],
["10751901","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2016/02/uptown-girl-brittany-with-love-cake.html?m=1",null,1454502079],
["10752100","Mary Anne K.","http://lakesidestamping.blogspot.com/2016/02/sweetheart.html",null,1454509628],
["10752146","Jane Willis","http://onionsandpaper.blogspot.co.uk/2016/02/oooh-you-cheeky-monkey.html",null,1454510387],
["10752192","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2016/02/i-love-roo.html",null,1454511296],
["10752276","treebug","http://www.treebug.org/2016/02/porocna-romanticna.html",null,1454514624],
["10752461","Heather Mills","http://wirewrapture.blogspot.com/2016/02/love.html",null,1454524764],
["10752548","Lynn","http://lynnscraftycorner.blogspot.co.uk/2016/02/rinas-reflection-technique-and-snippets.html",null,1454531186],
["10752573","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/02/old-friends.html",null,1454534345],
["10752585","Louise H","http://craftingmumlouise.blogspot.co.uk/2016/02/art-deco-birthday.html",null,1454535950],
["10752617","Pat","http://colourfulcardcreations.blogspot.co.uk/2016/02/rudolph-day-january-2016.html",null,1454540246],
["10752676","Maura","http://www.splitcoaststampers.com/gallery/photo/2698827?&cat=500&ppuser=146353",null,1454547761],
["10752789","Darnell","http://www.djkardkreations.com/2016/02/love-and-baboons.html",null,1454569755],
["10752829","Sunshinepen","http://groovyquail.blogspot.com/2016/02/three-love-hearts.html",null,1454575013],
["10752855","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/pretty-in-pink.html",null,1454578537],
["10752863","April","http://paperlilyleaf.blogspot.co.uk/2016/02/kitty-valentine.html",null,1454581194],
["10752887","kanda #2","http://kandacreativemoments.blogspot.co.uk/2016/02/christmas-snippets.html",null,1454585034],
["10752940","Swissie","http://livfrische48.blogspot.com",null,1454592572],
["10752953","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/hoo-loves-you.html",null,1454593382],
["10753052","Carol L","http://ourlittleinspirations.blogspot.com/2016/02/have-heart.html",null,1454598752],
["10753302","Princess Judy","http://princess-judy.blogspot.com/2016/02/i-heart-hearts.html",null,1454614486],
["10753528","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/black-tie-dinnerdance.html",null,1454632659],
["10753746","Janice","http://mycraftroommakes.blogspot.co.uk/2016/02/female-birthday-card_5.html",null,1454656939],
["10753769","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2016/02/party-pop-up.html",null,1454659706],
["10753816","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/02/lets-craft-and-create-challenge-110.html",null,1454664580],
["10753846","Sunshinepen","http://groovyquail.blogspot.co.uk/2016/02/undulating-love.html",null,1454668349],
["10753944","Jackie T","http://tinyrosecr.blogspot.co.uk/2016/02/alphabet-challenge-blog-letter-y-you.html",null,1454677270],
["10754025","Hazel (My Card Attic)","http://www.mycardattic.co.uk/2016/02/ombre-snowflake-snippets.html",null,1454681936],
["10754098","Lynn Hayes","http://creativecraftsbylynn.blogspot.com/2016/02/green-sneakers.html",null,1454685691],
["10754099","Diane Marsh","http://keepforevercards.blogspot.co.uk/2016/02/bits-and-bobs.html",null,1454685715],
["10754122","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/02/dies-for-hearts.html",null,1454687766],
["10754168","Cara @ Crafting Bunnies","http://craftingbunnies.blogspot.co.uk/2016/02/another-sympathy-card.html",null,1454691189],
["10754256","Kath","http://handmadebykath.blogspot.co.uk/2016/02/merry-monday-santa.html",null,1454696195],
["10754266","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2016/02/hello-heres-card-i-made-to-give-my-mum.html?m=1",null,1454697332],
["10754279","Valerija","http://moje-veselje.blogspot.si/2016/02/drsalka.html",null,1454698208],
["10754398","Carole Dixon","http://cardandcake.blogspot.co.uk/2016/02/pink-love.html",null,1454706006],
["10754410","Karen #3","http://karenscrafting.blogspot.co.uk/2016/02/celebrate-with-blue-for-boy.html",null,1454707716],
["10754433","Greta H (2)","http://ggnursecreations.blogspot.com/2016/02/welcome.html",null,1454709704],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}