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("22Jul2015", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MjJqdWwyMDE1", "1");
blenza_setcolor("default");
blenza_setExpires("4.5 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("22Jul2015");
blenza_linkies("thumb","pixiescraftyworkshop","22Jul2015","1815497050",3,
[
// MjJqdWwyMDE1
["10569509","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/07/wishing-you-joyful-day.html",null,1437882363],
["10569552","Jane and Lara","http://onionsandpaper.blogspot.co.uk/2015/07/how-to-make-minion.html",null,1437889988],
["10569565","Darnell","http://www.djkardkreations.com/2015/07/pressies-and-cake.html",null,1437891745],
["10569581","Lynne","http://cardsfromlynnesloft.blogspot.co.uk/2015/07/simply-less-is-more-234.html",null,1437893211],
["10569593","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2015/07/morning-and-welcome-to-sunday-morning.html",null,1437894930],
["10569619","Shaz in Oz.x ","http://calligraphycards-shazinoz.blogspot.com.au/",null,1437897290],
["10569620","Shaz in Oz.x ","http://calligraphycards-shazinoz.blogspot.com.au/2015/07/christmas-card-distress-ink-on.html",null,1437897339],
["10569638","Annie","http://craftworkblog.blogspot.co.uk/2015/07/snippet-card.html",null,1437900603],
["10569639","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/07/snippets-tag-card.html",null,1437901011],
["10569671","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/07/bagpuss.html",null,1437907300],
["10569724","Carol L","http://ourlittleinspirations.blogspot.com/2015/07/christmas-quilt-card.html",null,1437912132],
["10569834","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/07/paper-players-sketch-challenge.html",null,1437920671],
["10569865","Annie","http://inknrubba.blogspot.co.uk/2015/07/lim-snippets.html",null,1437922032],
["10569868","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/07/let-it-snow.html",null,1437922305],
["10569882","SARN","http://stampingforpleasure.blogspot.co.uk/2015/07/snippets-less-is-more.html",null,1437923518],
["10569899","Loll","http://www.stampingwithloll.com/",null,1437925673],
["10569906","Jules","http://jules-alwayswithaheart.blogspot.co.uk/2015/07/sunday-snippets_26.html",null,1437926210],
["10569907","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/07/its-your-bird-day.html",null,1437926213],
["10569923","Alison C","http://cranberryandeggplant.blogspot.co.uk/2015/07/spots-and-stripes-snippets.html",null,1437927763],
["10569942","CarolG","http://creationsnz.blogspot.co.nz/2015/07/snippets.html",null,1437930325],
["10569958","Pat","http://colourfulcardcreations.blogspot.co.uk/2015/07/cas-geometric-flower.html",null,1437933110],
["10570014","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/07/baby-announcement-cards.html",null,1437941667],
["10570046","Theresa Pace","http://craf-ther.blogspot.co.uk/2015/07/snippets.html",null,1437945909],
["10570052","Lilian","http://lillyb46.blogspot.co.uk/2015/07/monday-and-some-more-challenge-entries.html",null,1437946634],
["10570095","karenladd","https://www.flickr.com/photos/33235863@N08/19850453969/in/dateposted-public/",null,1437951700],
["10570121","Sparkling Pink","http://sparklingpinktitta.blogspot.it/2015/07/nuove-immagini-di-scrappers-deligths.html",null,1437957908],
["10570188","karenladd","https://www.flickr.com/photos/33235863@N08/20049224781/in/dateposted-public/",null,1437972299],
["10570228","Nessa\\'s Crafty Place","http://nessascraftyplace.blogspot.co.uk/2015/07/simple-stitched-heartfelt-thanks.html",null,1437980635],
["10570369","Eemeli","http://eemelike.blogspot.fi/2015/07/dt-get-creative-20.html",null,1437991744],
["10570407","Eve","http://evemariemakes.blogspot.co.uk/2015/07/endless-birthday-wishes.html",null,1437996474],
["10570462","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/07/white-christmas.html",null,1438000866],
["10570480","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2015/07/stamplorations-inspiration-project-29.html",null,1438002492],
["10570500","Gail Townsend","http://gailcraftycreations.blogspot.co.uk/2015/07/enjoy-lifes-moments.html",null,1438004212],
["10570808","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/07/new-home.html",null,1438024083],
["10570810","kanda","http://kandacreativemoments.blogspot.co.uk/2015/07/cas-snippets-for-christmas.html",null,1438024616],
["10570883","JoanW","http://latenightstamping.blogspot.co.uk/2015/07/christmas-card-for-rudolph-day.html",null,1438031529],
["10570918","Hettie","http://hettiecraftcz.blogspot.co.uk/2015/07/rudolph-day-july-already.html",null,1438035846],
["10570920","Maura","http://www.splitcoaststampers.com/gallery/photo/2649732?&cat=500&ppuser=146353",null,1438036269],
["10571092","Eemeli","http://eemelike.blogspot.fi/2015/07/dt-crafting-from-heart-70.html",null,1438060179],
["10571125","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/07/chocolate-gratitude.html",null,1438063439],
["10571141","Jenny Lawrence","http://cardsarus.blogspot.co.uk/2015/07/butterfly-challenge-35-t-is-for-talisman.html",null,1438066184],
["10571180","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2015/07/red-white-and-blue.html",null,1438070036],
["10571189","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2015/07/cardz-4-guyz-t-is-for.html",null,1438070581],
["10571234","Veerle","http://veerleskaartenhoekje.blogspot.be/2015/07/owl-snippets.html",null,1438075350],
["10571252","linby","http://craftylinby.blogspot.co.uk/2015/07/week-234-lim-meets-snippets.html",null,1438077582],
["10571293","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2015/07/july-rudolph.html",null,1438081586],
["10571462","Carol L","http://ourlittleinspirations.blogspot.com/2015/07/ohhh-noooo.html",null,1438090598],
["10571645","Liz Cavill #3","http://crafty-lizc.blogspot.co.uk/2015/07/man-tree.html",null,1438098700],
["10571771","Kath","http://handmadebykath.blogspot.co.uk/2015/07/less-is-more-snippets.html",null,1438105704],
["10571783","Karen","http://karenscrafting.blogspot.co.uk/2015/07/christmas-card-club-christines-choice.html",null,1438106918],
["10571851","Viv","http://vivsvisuals.blogspot.co.uk/2015/07/just-hangin-around.html",null,1438111134],
["10571878","Bonnie","http://bon2stamp.blogspot.com/2015/07/winged-beauty-make-your-heart-sing.html",null,1438112530],
["10571926","Crafty Distraction","http://craftydistraction.blogspot.co.uk/2015/07/catching-up-with-less-is-more.html",null,1438116675],
["10572116","Dora B","http://7cardologists.blogspot.co.uk/2015/07/welcome-gnome.html",null,1438137593],
["10572176","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/2015/07/our-daily-bread-panpastels-on-embossed.html",null,1438145404],
["10572298","Maxine D","http://kiwimeskreations.blogspot.co.nz/2015/07/more-care-cards.html",null,1438150062],
["10572366","Darnell","http://www.djkardkreations.com/2015/07/penguin-love-and-silvery-snowman.html",null,1438152473],
["10572510","Helen","http://helenscrafthaven.blogspot.co.uk/2015/07/i-have-yet-more-christmas-cards-to.html",null,1438164627],
["10572655","Em Fairley","http://www.creative-em.com/2015/07/framed-triple-butterfly-with-me-grateful.html",null,1438173631],
["10572693","Hazel - My Card Attic","http://www.mycardattic.co.uk",null,0],
["10572694","Hazel - My Card Attic","http://www.mycardattic.co.uk/2015/07/happy-little-stampers-cas-stamping-uk.html",null,0],
["10572695","Bonnie","http://bon2stamp.blogspot.com/2015/07/brushos-snippets-and-butterfly.html",null,1438175168],
["10572982","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/07/summer-flip-flops.html",null,1438187119],
["10573332","Susanne V.","http://keepintouchcards.blogspot.com/2015/07/two-cards-with-gingko-leaf.html",null,1438223307],
["10573433","Pauline","http://craftingwithcotnob.blogspot.co.uk/2015/07/snippets-house.html",null,1438239344],
["10573570","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/07/happy-anniversary-kitties.html",null,1438262814],
["10573730","Lynn","http://lynnscraftycorner.blogspot.co.uk/2015/07/snippets-playground.html",null,1438278449],
["10573767","Carole Dixon","http://cardandcake.blogspot.co.uk/2015/06/lilac-time.html",null,0],
["10573770","Pat","http://colourfulcardcreations.blogspot.co.uk/2015/07/zentangled-flowers.html",null,1438283126],
["10573771","Carole Dixon","http://cardandcake.blogspot.co.il/2015/07/2-years-old.html",null,1438283443],
["10573907","Cathy R","http://cathyscardspot.blogspot.com.au/2015/07/snippets-birthday.html",null,1438293077],
["10573992","Sandy J","http://stampingwriter.blogspot.com/2015/07/in-style-of.html",null,1438300372],
["10574206","Amanda","http://pandaspaperplaytime.blogspot.co.uk/2015/07/jolly-good-fellow.html",null,1438324560],
["10574236","Lynn","http://lynnscraftycorner.blogspot.co.uk/2015/07/lim-snippets-for-chrissie.html",null,1438328504],
["10574340","Lindsey","http://lindsey-doodlings.blogspot.co.uk/2015/07/floral-snippets.html",null,1438340602],
["10574367","Lindsey","http://lindsey-doodlings.blogspot.co.uk/2015/07/love-you-sweetheart.html",null,1438342498],
["10574371","Eve","http://evemariemakes.blogspot.co.uk/2015/07/textured-boutique-embossing-folder.html",null,1438343079],
["10574388","Carol L","http://ourlittleinspirations.blogspot.com/2015/07/the-skys-limit.html",null,1438344827],
["10574395","Eve","http://evemariemakes.blogspot.co.uk/2015/07/my-feminine-friday-post.html",null,1438345798],
["10574663","April","http://paperlilyleaf.blogspot.co.uk/2015/07/something-floral-for-change.html",null,1438364224],
["10574747","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/07/christmas-in-july-3.html",null,1438370365],
["10574749","Kath","http://handmadebykath.blogspot.co.uk/2015/07/mistletoe-snippets.html",null,1438370483],
["10574757","Maura","http://www.splitcoaststampers.com/gallery/photo/2650563?&cat=500&ppuser=146353",null,1438371221],
["10574794","Taunya Butler","http://daisiesgirl.com/2015/07/30/hello/",null,1438375888],
["10574870","Karen #2","http://karenscrafting.blogspot.co.uk/2015/08/cas-crazy-bird-style.html",null,1438387001],
["10574900","karenladd","https://www.flickr.com/photos/33235863@N08/19564454573/in/dateposted-public/",null,1438393172],
["10574942","shartl","https://www.flickr.com/photos/75112453@N05/19563727984/in/dateposted-public/",null,1438396005],
["10575001","Vinita Jain","http://madewithlovencare.blogspot.in/2015/07/color-burst-with-butterflies.html",null,1438409416],
["10575068","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/08/chnc-challenge-extra-for-august-2015.html",null,1438422229],
["10575070","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/08/christmas-cards-all-year-round-august.html",null,1438422336],
["10575071","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/08/another-card-for-august-ccayr.html",null,1438422373],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}