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("21Oct2015", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MjFvY3QyMDE1", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("21Oct2015");
blenza_linkies("thumb","pixiescraftyworkshop","21Oct2015","883631142",3,
[
// MjFvY3QyMDE1
["10656974","Cathy R","http://cathyscardspot.blogspot.com.au/2015/10/ladybug-or-ladybeetle.html",null,1445743872],
["10657012","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/10/sunny-accordion-pop-up-card.html",null,1445749333],
["10657015","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/10/halloween-treat-boxes.html",null,1445750790],
["10657022","Kathyk","http://purpliciousprincessdiaries.blogspot.co.uk/2015/10/lazy-sunday_25.html",null,1445752498],
["10657058","Donna","http://roominacupboard.blogspot.co.uk/2015/10/gift-bag-poppies-female.html",null,1445758497],
["10657069","Janice","http://mycraftroommakes.blogspot.co.uk/2015/10/get-well-card.html",null,1445760369],
["10657079","Megan","http://merrycardcorner.blogspot.com.au/2015/10/tag-time.html",null,1445761314],
["10657085","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/10/where-did-that-week-go.html",null,1445762045],
["10657094","Scrappymo! Yes please for the prize draw","http://scrapsoflifebyscrappymo.blogspot.ca/2015/10/october-rudolph-days-challenge.html",null,1445763723],
["10657118","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2015/10/on-roll.html",null,1445766221],
["10657161","Maarit","http://violetscorner.blogspot.se/2015/10/something-sweet.html",null,1445769276],
["10657163","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/10/christmas-accordion-pop-up-card.html",null,1445769393],
["10657195","Sally H","http://sal-utations.blogspot.co.uk/2015/10/rudolf-day-for-october.html",null,1445772325],
["10657201","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/10/rainbow-butterflies.html",null,1445773154],
["10657236","Mary Anne K.","http://lakesidestamping.blogspot.com/2015/10/just-mark-me-absent.html",null,1445774786],
["10657241","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/10/eek.html",null,1445775324],
["10657246","Kath","http://handmadebykath.blogspot.co.uk/2015/10/black-and-orange.html",null,1445776017],
["10657277","Carol L","http://ourlittleinspirations.blogspot.com/2015/10/christmas-joy.html",null,1445778180],
["10657278","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/10/lilac-christmas-reindeer-all-dressed-up.html?m=1",null,1445778218],
["10657370","Darnell","http://www.djkardkreations.com/2015/10/the-25th-pti-rudolph-hops-pixie.html",null,1445786306],
["10657404","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/10/thinking-of-you.html",null,1445788097],
["10657447","Daisy Jane","http://jane-janesjournal.blogspot.co.uk/2015/10/autumnal-crafting-fun.html",null,1445791704],
["10657494","Karen","http://karenscrafting.blogspot.co.uk/2015/10/a-possible-christmas-present.html",null,1445795655],
["10657503","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/10/lim-sketch.html",null,1445796364],
["10657525","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/10/una-scatolina-cappello-da-strega-per.html",null,1445799508],
["10657550","Lisa :D","http://royalpumpkinart.blogspot.com/2015/10/750-posts.html",null,1445801877],
["10657573","SARN","http://stampingforpleasure.blogspot.co.uk/2015/10/snippets-playground-party-week-200.html",null,1445805187],
["10657576","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/10/rudolph-day.html",null,1445805643],
["10657619","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/10/card-for-uncle-alwin.html",null,1445808579],
["10657638","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/10/a-little-toucan.html",null,1445809804],
["10657661","Kath","http://myplainandsimple.blogspot.co.uk/2015/10/rudolph-day-penultimate.html",null,1445811813],
["10657702","Pam","http://pamspaperandink.blogspot.com/2015/10/glitter-ornament.html",null,1445818145],
["10657927","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/10/christmas-pop-up-card.html",null,1445850159],
["10657969","Kate P.","http://manualidades-mamapez5.blogspot.com.es/2015/10/reindeer-for-rudolph-day.html",null,1445854605],
["10657975","JennyH","http://jennyhurleycards.blogspot.com.au/2015/10/all-wrapped-up.html",null,1445855006],
["10657985","Jenny Lawrence","http://cardsarus.blogspot.co.uk/2015/10/rudolf-challenge-octoer-2015-and.html",null,1445856227],
["10658087","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/10/blog-post_26.html?m=1",null,1445862230],
["10658109","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/10/cat-lovers-hop-day-1-thanks.html",null,1445863793],
["10658177","IKE","http://suzy-ikesworld.blogspot.gr/2015/10/the-cat-lovers-blog-hop-day-1.html",null,1445867639],
["10658221","Carol L","http://ourlittleinspirations.blogspot.com/2015/10/boo.html",null,1445870210],
["10658240","Elizabeth","http://silverscrappers.blogspot.co.uk/2015/10/sunday-snippets-week-200.html",null,1445871112],
["10658246","Valerija","http://moje-veselje.blogspot.si/2015/10/rdece-vrtnice-na-klavirju.html",null,1445871712],
["10658339","Bonnie","http://bon2stamp.blogspot.com/2015/10/christmas-lights-for-merry-monday.html",null,1445878301],
["10658364","karenladd","https://www.flickr.com/photos/33235863@N08/21852273604/in/dateposted-public/",null,1445881932],
["10658365","karenladd","https://www.flickr.com/photos/33235863@N08/22461629982/in/dateposted-public/",null,1445881970],
["10658381","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/10/flowers-and-bows.html",null,1445883148],
["10658407","Coni","http://conilwhichcraft.blogspot.com/2015/10/simon-says-wednesday-and-snippets.html",null,1445885109],
["10658566","JoanW","http://latenightstamping.blogspot.co.uk/2015/10/bah-humbug.html",null,1445904251],
["10658662","Maura","http://www.splitcoaststampers.com/gallery/photo/2674846?&cat=500&ppuser=146353",null,1445914917],
["10658686","Lisa :D","http://royalpumpkinart.blogspot.com/2015/10/anything-goes-new-challenge-with_26.html",null,1445918984],
["10658697","Greta H","http://ggnursecreations.blogspot.com/2015/10/foiled-pumpkins-again.html",null,1445920815],
["10658820","Janice","http://mycraftroommakes.blogspot.co.uk/2015/10/best-wishes-card.html",null,1445930879],
["10658894","Valerija","http://moje-veselje.blogspot.si/2015/10/jesensko-listje.html",null,1445937614],
["10659157","kanda","http://kandacreativemoments.blogspot.co.uk/2015/10/playground-party-and-95-year-old.html",null,1445957639],
["10659200","Kath","http://handmadebykath.blogspot.co.uk/2015/10/n-for-numbers.html",null,1445961234],
["10659245","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/10/herfstjeremia-333.html",null,1445964384],
["10659247","Jane\\'s Journal","http://jane-janesjournal.blogspot.co.uk/2015/10/halloween-approaches.html",null,1445964532],
["10659260","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/10/2-kaartjes.html",null,1445965308],
["10659261","JennyH","http://jennyhurleycards.blogspot.com.au/2015/10/mini-santa-suits.html",null,1445965350],
["10659308","Beebeebabs","http://beebeebabs2.blogspot.com/2015/10/big-smile_27.html",null,1445967351],
["10659333","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/10/lawn-fawn-bokeh-in-snow.html",null,1445970067],
["10659407","Elizabeth","http://silverscrappers.blogspot.co.uk/2015/10/white-on-white-card.html",null,1445976832],
["10659423","Susan aka rainy","http://rainy.blogs.splitcoaststampers.com/2015/10/27/boo/",null,1445977625],
["10660274","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/",null,1446031705],
["10660275","Shaz in Oz.x no2","http://calligraphycards-shazinoz.blogspot.com.au/2015/10/woyww-snippetty-penny-black-you-are.html",null,1446031739],
["10660286","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/10/more-numbers.html",null,1446032544],
["10660310","Lynn","http://lynnscraftycorner.blogspot.co.uk/2015/10/a-little-bit-purple.html",null,1446034044],
["10660337","kanda #2","http://kandacreativemoments.blogspot.co.uk/2015/10/colours.html",null,1446035811],
["10660349","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/10/stunning-sunflower.html",null,1446036482],
["10660611","linby","http://craftylinby.blogspot.co.uk/2015/10/lim-week-247-sketch.html",null,1446047147],
["10660732","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/10/the-same-but-different.html",null,1446053952],
["10660741","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/10/tall-and-skinny.html",null,1446054307],
["10660764","Alison C","http://cranberryandeggplant.blogspot.co.uk/2015/10/80th-purple-flowers.html",null,1446055404],
["10660921","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/10/starry-snowman.html",null,1446068355],
["10660957","Loll","http://www.stampingwithloll.com/",null,1446071777],
["10660991","Bonnie","http://bon2stamp.blogspot.com/2015/10/october-rudolph-days.html",null,1446074381],
["10661169","shartl","https://www.flickr.com/photos/75112453@N05/22375089890/in/dateposted-public/",null,1446094167],
["10661200","karenladd","https://www.flickr.com/photos/33235863@N08/22563714365/in/dateposted-public/",null,1446096294],
["10661253","Valerija","http://moje-veselje.blogspot.si/2015/10/praznicna-z-zvonckom.html",null,1446100299],
["10661336","Jenni M","http://jennisjems.blogspot.co.uk/2015/10/muse-139.html",null,1446110944],
["10661349","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/10/spooky-treat-bags-day-for-daisies.html?m=1",null,1446112526],
["10661375","meg","http://bitsandpiecec.blogspot.co.uk/2015/10/christmas-love.html",null,1446116541],
["10661378","Diane H","http://nelliesnest.blogspot.com/2015/10/friends.html",null,1446116844],
["10661434","Birgit","http://craftingwhileiwait.blogspot.com/2015/10/heartfelt-wishes-casology-challenge.html",null,1446120731],
["10661548","Vinita Jain","http://madewithlovencare.blogspot.in/2015/10/cat-lovers-hop-finger-puppets.html",null,1446131849],
["10661577","Jane\\'s Journal","http://jane-janesjournal.blogspot.co.uk/2015/10/the-funkie-junkies-12-tags-of-christmas.html",null,1446135733],
["10661603","Greta H (2)","http://ggnursecreations.blogspot.com/2015/10/christmas-magic.html",null,1446138677],
["10661867","shartl","https://www.flickr.com/photos/75112453@N05/22586169765/in/dateposted-public/",null,1446160351],
["10661872","Karen #2","http://karenscrafting.blogspot.co.uk/2015/10/a-sketch-and-farewell-to-summer.html",null,1446161026],
["10661921","Mary H.","http://carolinacardsbymaryh.blogspot.com/2015/10/halloween-by-northwoods.html",null,1446165564],
["10662002","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/10/ready-for-trick-or-treat-cat-lovers-hop.html",null,1446180432],
["10662069","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2015/10/bold-and-beautiful.html",null,1446192560],
["10662088","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/2015/10/friday-smiles-snippety-christmas.html",null,1446195131],
["10662176","kanda","http://kandacreativemoments.blogspot.co.uk/2015/10/merry-kiss-mouse.html",null,1446200344],
["10662212","Carol L","http://ourlittleinspirations.blogspot.com/2015/10/fright-night.html",null,1446205077],
["10662231","Eemeli","http://eemelike.blogspot.fi/2015/10/dt-wags-n-whiskers-165.html",null,1446206568],
["10662375","Donna","http://roominacupboard.blogspot.co.uk/2015/10/strength-weathered-clock-female.html",null,1446215777],
["10662429","Eve","http://evemariemakes.blogspot.co.uk/2015/10/global-design-project-gdp008.html",null,1446219004],
["10662433","JennyH","http://jennyhurleycards.blogspot.com.au/2015/10/christmas-wreath.html",null,1446219420],
["10662448","Lynn Hayes","http://creativecraftsbylynn.blogspot.com/2015/10/bear-y-christmas.html",null,1446220759],
["10662550","Vinita Jain","http://madewithlovencare.blogspot.in/2015/10/make-wish.html",null,1446225439],
["10662574","Bonnie","http://bon2stamp.blogspot.com/2015/10/autumn-woods.html",null,1446226973],
["10662674","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/10/cat-lovers-hop-day-5-wedding.html",null,1446234213],
["10662768","Karen #3","http://karenscrafting.blogspot.co.uk/2015/10/new-stamp-and-very-old-stash.html",null,1446243529],
["10662840","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/10/herfst.html",null,1446250336],
["10662950","Vinita Jain","http://madewithlovencare.blogspot.in/2015/10/you-are-fabulous.html",null,1446272511],
["10663012","Helen","http://helenscrafthaven.blogspot.co.uk/2015/10/happy-halloween.html",null,1446284742],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}