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("10Feb2016", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MTBmZWIyMDE2", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("10Feb2016");
blenza_linkies("thumb","pixiescraftyworkshop","10Feb2016","276769779",3,
[
// MTBmZWIyMDE2
["10761470","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2016/02/rainbow-treasure-box.html",null,1455432760],
["10761503","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2016/02/morning-and-happy-valentines-day.html",null,1455439355],
["10761531","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2016/02/pixies-playground-challenge-216.html",null,1455444153],
["10761535","Elly Booij","http://ellyscardcreatief.blogspot.nl/2016/02/borduren-en-stempelen.html",null,1455444760],
["10761592","Jane Willis","http://onionsandpaper.blogspot.co.uk/2016/02/you-asked-for-it.html",null,1455454922],
["10761593","Carol L","http://ourlittleinspirations.blogspot.com/2016/02/happy-valentines-day.html",null,1455454927],
["10761610","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/02/my-hubby-my-valentine_14.html",null,1455456418],
["10761634","Nicky","http://stiggyscrafts.blogspot.co.uk/2016/02/jennys-valentines-birthday.html",null,1455458551],
["10761662","Darnell","http://www.djkardkreations.com/2016/02/birthday-balloons.html",null,1455461194],
["10761760","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/02/happy-valentine.html",null,1455469983],
["10761810","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2016/02/spotlight-stamping.html",null,1455476697],
["10761825","Kath","http://myplainandsimple.blogspot.co.uk/2016/02/allsorts-week-350-circles.html",null,1455479402],
["10761859","treebug","http://www.treebug.org/2016/02/optimisticni-snezak-v-modrem-52016.html",null,1455483285],
["10761871","Karen","http://karenscrafting.blogspot.co.uk/2016/02/make-your-own-background-make-it-your.html",null,1455485167],
["10761880","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2016/02/amore-e-far-volare-un-aquilone.html",null,1455486287],
["10761891","Cathy R","http://cathyscardspot.blogspot.com.au/2016/02/floral-heart.html",null,1455487363],
["10761916","karenladd","https://www.flickr.com/photos/33235863@N08/24663594679/in/dateposted-public/",null,1455491910],
["10761938","Greta H","http://ggnursecreations.blogspot.com/2016/02/final-pti-anniversary-cards.html",null,1455495154],
["10761939","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/second-fiskarettes-dt-project.html",null,1455495400],
["10761996","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2016/02/3-d-stamped-flowers.html",null,1455505265],
["10762134","Brenda","http://stamping-fantasies.blogspot.co.uk/2016/02/all-is-calm-in-treehouse-or-is-it.html",null,1455526402],
["10762165","Lia","http://liadesignandso.blogspot.nl/2016/02/labelkaart.html",null,1455530108],
["10762193","Kath","http://handmadebykath.blogspot.co.uk/2016/02/believe-in-magic.html",null,1455533280],
["10762202","Sunshinepen","http://groovyquail.blogspot.co.uk/2016/02/pink-love.html",null,1455534401],
["10762215","Swissie","http://livfrische48.blogspot.com",null,1455535226],
["10762229","Meena Herale","http://cardscraftandart.blogspot.in/2016/02/easel-card.html",null,1455536552],
["10762250","Cara @ Crafting Bunnies","http://craftingbunnies.blogspot.co.uk/2016/02/hugs.html",null,1455538436],
["10762410","Em Fairley","http://www.creative-em.com/2016/02/butterfly-triple.html",null,1455547482],
["10762417","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/golden-wedding-anniversary.html",null,1455547545],
["10762507","Meena Herale","http://cardscraftandart.blogspot.in/2016/02/door-hanger.html",null,1455553364],
["10762508","kanda","http://kandacreativemoments.blogspot.co.uk/2016/02/baby-granddaughter.html",null,1455553442],
["10762518","Darlene Pavlick","http://darscraftycreations.blogspot.com/2016/02/monday-again.html",null,1455553881],
["10762521","R`s box of dreams","http://boxofdreams636.canalblog.com/archives/2016/02/15/33375015.html",null,1455554116],
["10762538","Brenda L.","http://www.friendscraftinwithfriends.blogspot.com/2016/02/chocolatea-basic-necessity-bbtb2.html",null,1455555356],
["10762688","Christine Smith","http://ramblingsandcraft.blogspot.co.uk/2016/02/happy-belated-valentines-day.html",null,1455565763],
["10762716","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/02/foundin-loft.html",null,1455566096],
["10762940","Heather Mills","http://wirewrapture.blogspot.com/2016/02/advent-calendar.html",null,1455585804],
["10762960","Pat","http://colourfulcardcreations.blogspot.co.uk/2016/02/stencilled-valentine-card.html",null,1455587446],
["10762969","Mary H. ","http://carolinacardsbymaryh.blogspot.com/2016/02/a-st-pats-day-bunny.html",null,1455589202],
["10762970","karenladd","https://www.flickr.com/photos/33235863@N08/25030136196/in/dateposted-public/",null,1455589189],
["10763130","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/stippled-rose-for-mothers-day.html",null,1455613743],
["10763183","Helen","http://helenscrafthaven.blogspot.co.uk/2016/02/toadily-happy.html",null,1455623205],
["10763247","Tiziana B.","http://sweetandcoloured.blogspot.it/2016/02/timbroscrapmania-cuori-hearts.html",null,1455628509],
["10763258","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2016/02/recycled-paintbrush-holder.html",null,1455628655],
["10763393","Viv","http://vivsvisuals.blogspot.co.uk/2016/02/fly.html",null,1455636201],
["10763470","April","http://paperlilyleaf.blogspot.co.uk/2016/02/the-wilderness-awaits.html",null,1455638680],
["10763575","Valerija","http://moje-veselje.blogspot.si/2016/02/valentinova-tresocka.html",null,1455642642],
["10763658","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2016/02/todays-card-features-beautiful-art-deco.html",null,1455646873],
["10763903","R`s box of dreams","http://boxofdreams636.canalblog.com/archives/2016/02/16/33381731.html",null,1455662463],
["10763916","AJ","http://ajcreativeenergy.blogspot.com/2016/02/blue-ballerina.html",null,1455663390],
["10763933","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2016/02/joy-clair-february-release-blog-hop.html",null,1455665144],
["10763936","karenladd","https://www.flickr.com/photos/33235863@N08/24444699554/in/dateposted-public/",null,1455665550],
["10764223","Darnell","http://www.djkardkreations.com/2016/02/a-lot-of-hot-air.html",null,1455694420],
["10764330","Lindsey","http://lindsey-doodlings.blogspot.co.uk/2016/02/happy-anniversary.html",null,1455702285],
["10764417","Valerija","http://moje-veselje.blogspot.si/2016/02/ovojnica-z-narcisami.html",null,1455709040],
["10764503","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2016/02/fushsia.html",null,1455712421],
["10764745","Sharada Dilip","http://happymomentzz.blogspot.in/2016/02/valentines-day-accordion-album-and-tag.html",null,1455720389],
["10764931","Carol L","http://ourlittleinspirations.blogspot.com/2016/02/mans-best-friend.html",null,1455726015],
["10764951","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2016/02/meet-rascog.html",null,1455726740],
["10765068","Jenny Lawrence","http://cardsarus.blogspot.co.uk/2016/02/buuterfly-challenge-and-snippets-card.html",null,1455730180],
["10765072","Janice","http://mycraftroommakes.blogspot.co.uk/2016/02/female-birthday-card.html",null,1455730318],
["10765190","Stefi","http://stefisgirl.blogspot.bg/2016/02/blog-post_15.html",null,1455735659],
["10765192","Lady Joyful","https://thejoyfulsoulcreates.wordpress.com/2016/02/17/butterfly-dream/",null,1455735771],
["10765200","Hettie","http://hettiecraftcz.blogspot.co.uk/2016/02/wedding-card-for-alex-and-steve.html",null,1455736115],
["10765216","AJ","http://ajcreativeenergy.blogspot.com/2016/02/girly-thinking.html",null,1455737126],
["10765249","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2016/02/not-as-planned.html",null,1455739453],
["10765278","Lynn","http://lynnscraftycorner.blogspot.co.uk/2016/02/triple-layer-stamping.html",null,1455742027],
["10765292","treebug #2","http://www.treebug.org/2016/02/darilna-kuverta-v-modrem.html",null,1455743620],
["10765331","Susan Renshaw","http://susanrenshaw0404.blogspot.co.uk/2016/02/baby-its-cold-outside.html",null,1455747327],
["10765347","Jean","http://wwwmycraftycornerblog.blogspot.co.uk/2016/02/floral-frame.html",null,1455749220],
["10765357","AJ","http://ajcreativeenergy.blogspot.com/2016/02/polar-birthday.html",null,1455750142],
["10765559","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2016/02/i-was-inspired-by-fabulous-card-by.html",null,1455780873],
["10765628","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/red-and-white.html",null,1455789680],
["10765643","Sam / Whisper","http://whisperscards.blogspot.co.uk/2016/02/dog-drumming.html",null,1455792500],
["10765685","Sunshinepen","http://groovyquail.blogspot.co.uk/2016/02/sapphire-butterflies.html",null,1455798462],
["10765847","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2016/02/regalare-un-grembiule-da-cucina.html",null,1455813623],
["10765888","Meena Herale","http://cardscraftandart.blogspot.in/2016/02/recycle-cd-coaster.html",null,1455816181],
["10765906","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2016/02/have-purr-fect-day.html",null,1455818160],
["10765929","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/02/sending-prayers-your-way-sapphire-and.html",null,1455818980],
["10765960","Sandy J","http://stampingwriter.blogspot.com/2016/02/embossing-folder-stamping.html",null,1455820217],
["10766037","Sue","http://susanscardcreations.blogspot.co.uk/2016/02/box-of-minions.html",null,1455826584],
["10766039","Jo L","http://mycraftingcorner-jo.blogspot.co.uk/2016/02/playtime.html",null,1455826633],
["10766058","Alison C","http://cranberryandeggplant.blogspot.co.uk/2016/02/birthday-wreath.html",null,1455828576],
["10766092","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2016/02/bold-butterfly-bloomin-heart.html",null,1455830936],
["10766123","Helen #2","http://helenscrafthaven.blogspot.co.uk/2016/02/upcycled-gift-bag.html",null,1455833542],
["10766147","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/02/fan-tastic-tuesday-challenge-124.html",null,1455835185],
["10766159","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/02/crafting-musketeers-challenge-34.html",null,1455836136],
["10766280","Karen #2","http://karenscrafting.blogspot.co.uk/2016/02/tag-experiment-february-3.html",null,1455847454],
["10766450","Linby","http://craftylinby.blogspot.co.uk/2016/02/add-button-cd-sunday.html",null,1455868959],
["10766479","Sunshinepen","http://groovyquail.blogspot.co.uk/2016/02/hearts-flowers-and-butterfly.html",null,1455873526],
["10766494","treebug","http://www.treebug.org/2016/02/blog-hop-po-skici.html",null,1455874994],
["10766504","Kath","http://handmadebykath.blogspot.co.uk/2016/02/blue-cream-and-gold-christmas.html",null,1455876285],
["10766510","Susan","http://edenland.ca/?p=988",null,1455877091],
["10766530","Donna","http://roominacupboard.blogspot.co.uk/2016/02/tag-card-panda-female.html",null,1455879384],
["10766624","Barb Williams","http://farawaycrafts.blogspot.co.uk/2016/02/yoghurt-pot-card.html",null,1455885719],
["10766638","Elizabeth","http://silverscrappers.blogspot.co.uk/2016/02/furry-friend-birthday-card.html",null,1455886853],
["10766718","Valerija","http://moje-veselje.blogspot.si/2016/02/vabilo-za-80-let.html",null,1455891449],
["10766774","JennyH","http://jennyhurleycards.blogspot.com.au/2016/02/birthday-banner.html",null,1455894515],
["10766815","Eemeli","http://eemelike.blogspot.fi/2016/02/dt-wags-n-whiskers-172.html",null,1455896054],
["10766992","Kikka Cards","http://kikkacards.blogspot.it",null,1455908740],
["10767080","Loll","http://www.stampingwithloll.com/",null,1455918716],
["10767172","Greta H","http://ggnursecreations.blogspot.com/2016/02/friendship.html",null,1455933036],
["10767220","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/02/easter-card-with-gingham-and-flowers.html",null,1455942827],
["10767245","karenladd","https://www.flickr.com/photos/33235863@N08/25119404215/in/dateposted-public/",null,1455947162],
["10767264","Scrappymo","http://scrapsoflifebyscrappymo.blogspot.ca/2016/02/ballerina-birthday-wishes.html",null,1455951802],
["10767303","Maarit","http://violetscorner.blogspot.se/2016/02/fluffy-typewriter.html",null,1455959150],
["10767336","Susan Renshaw","http://susanrenshaw0404.blogspot.co.uk/2016/02/new-challenge-at-slslines.html",null,1455963380],
["10767339","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/02/suzy-bees-bloomin-challenge-118.html",null,1455964261],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}