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("09Jan2015", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MDlqYW4yMDE1", "1");
blenza_setcolor("default");
blenza_setExpires("5 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("09Jan2015");
blenza_linkies("thumb","pixiescraftyworkshop","09Jan2015","284516595",3,
[
// MDlqYW4yMDE1
["10345642","Sandra H","http://sandra-nanagramps.blogspot.co.uk/2015/01/so-floral.html",null,1420936674],
["10345886","Darnell","http://www.djkardkreations.com/2015/01/grateful.html",null,1420961007],
["10345900","Cathy R","http://cathyscardspot.blogspot.com.au/2015/01/pink-watercoloured-rose.html",null,1420963054],
["10345937","Kathyk","http://purpliciousprincessdiaries.blogspot.co.uk/2015/01/lazy-sunday-post.html",null,1420965488],
["10345976","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/01/challenge-time.html",null,1420967531],
["10346027","Sally H","http://sal-utations.blogspot.co.uk/2015/01/never-before-used-stuff-and-very.html",null,1420971194],
["10346118","Sue J","http://olliesmam.blogspot.co.uk/2015/01/new-sunday-releases-with-digistamps4joy.html",null,1420978414],
["10346147","Carol L","http://ourlittleinspirations.blogspot.com/2015/01/love.html",null,1420981128],
["10346153","meg","http://bitsandpiecec.blogspot.co.uk/2015/01/shades-of-blue.html",null,1420981499],
["10346204","Kath","http://handmadebykath.blogspot.co.uk/2015/01/just-for-you.html",null,1420983782],
["10346413","Anne F","http://stampsandpaper.blogspot.co.uk/2015/01/pixies-snippets-challenge-week-159.html",null,1420996428],
["10346442","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/01/non-traditional-christmas-colours.html",null,1420999120],
["10346472","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2015/01/birthday-butterfly-basics.html",null,1421001323],
["10346558","Bozena Adamusinska","http://artcardbox.blogspot.com/2015/01/chryzantemy.html",null,1421006449],
["10346566","Hettie","http://hettiecraftcz.blogspot.co.uk/2015/01/happy-birthday-rachel.html",null,1421007184],
["10346570","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/01/sunflowers.html",null,1421007389],
["10346576","SARN","http://stampingforpleasure.blogspot.co.uk/2015/01/week-159-in-snippets-playground.html",null,1421007618],
["10346789","Higgledy-Piggledy","http://higgledypiggledycrafts.blogspot.com/2015/01/love-bugs.html",null,1421024587],
["10346835","Bobbi\\'s Treasure","http://bobbistreasure.blogspot.com/2015/01/sos-183-happy-new-year.html",null,1421028984],
["10346992","Kath","http://handmadebykath.blogspot.co.uk/2015/01/tapestry-bouquet.html",null,1421050125],
["10347058","Laura","http://beadsbuttonsandbirds.blogspot.co.uk/2015/01/hello.html",null,1421056392],
["10347127","meg","http://bitsandpiecec.blogspot.co.uk/2015/01/just-for-you.html",null,1421063341],
["10347301","Veerle","http://veerleskaartenhoekje.blogspot.be/2015/01/new-beginnings.html",null,1421072744],
["10347303","kbrandy4","http://hazelshandmadecrafts.blogspot.co.uk/2015/01/a-flutterby-thank-you.html",null,1421072787],
["10347435","Lynn Hayes","http://creativecraftsbylynn.blogspot.com/2015/01/chicks-happen.html",null,1421080178],
["10347503","Jackie Trinder","http://tinyrosecr.blogspot.co.uk/2015/01/a-quick-thank-you-card.html",null,1421083477],
["10347634","Em Fairley","http://www.creative-em.com/2015/01/in-pink-with-butterfly-basics.html",null,1421088396],
["10347757","Tracey Mallaghan","http://chronicallycrafting.blogspot.co.uk/2015/01/retro-sketch-with-magazine-freebie.html",null,1421097066],
["10347762","LesleyG#2","http://lesleyscraftroom.blogspot.co.uk/2015/01/butterflies-upon-butterflies.html",null,1421097360],
["10347770","Karen","http://stampinginpink.blogspot.co.uk/2015/01/mondays-post-is-snippet-busting.html",null,1421097912],
["10347935","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2015/01/cure-for-monday-blues.html",null,1421115980],
["10348117","Cathy R","http://cathyscardspot.blogspot.com.au/2015/01/brusho-butterflies.html",null,1421135377],
["10348840","Caroline - KISS","http://kiss-keepitsweetsimple.blogspot.co.uk/2015/01/beep-boop-birthday.html",null,1421170114],
["10348873","kbrandy4","http://hazelshandmadecrafts.blogspot.co.uk/2015/01/tilda-dexter-celebrate-2015.html",null,1421171469],
["10348928","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/01/layered-embossing-3-purple-floral.html",null,1421174554],
["10349044","AJ","http://ajcreativeenergy.blogspot.com/2015/01/finch-thinking.html",null,1421180679],
["10349117","LesleyG#3","http://lesleyscraftroom.blogspot.co.uk/2015/01/big-butterfly-thanks.html",null,1421184343],
["10349212","Sandy J","http://stampingwriter.blogspot.com/2015/01/vintage-valentine.html",null,1421188024],
["10349295","Hettie","http://hettiecraftcz.blogspot.co.uk/2015/01/happy-birthday-cherry.html",null,1421193835],
["10349320","Greta H ","http://ggnursecreations.blogspot.com/2015/01/winter-chill-winter-white.html",null,1421195540],
["10349360","Pat","http://colourfulcardcreations.blogspot.co.uk/2015/01/stitched-hearts-anniversary.html",null,1421198953],
["10349506","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/01/snowy-winter-night-magenta-stamp.html",null,1421208742],
["10349795","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2015/01/birds-on-wire.html",null,1421224241],
["10350150","Brenda L.","http://www.friendscraftinwithfriends.blogspot.com/2015/01/home-is-where-you-hang-your-heart.html",null,1421240772],
["10350225","Sue J ","http://olliesmam.blogspot.co.uk/2015/01/bingo-with-digistamps4joy.html",null,1421242929],
["10350471","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/01/recessed-window-card.html",null,1421249697],
["10350501","Carol L","http://ourlittleinspirations.blogspot.com/2015/01/layered-embossing.html",null,1421250527],
["10350665","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/01/purrfect-day-paper-smooches-stampdie.html",null,1421257653],
["10350693","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/01/gruffie-kalender-kaart.html",null,1421259626],
["10350820","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/01/layered-embossing-4-from-old-primer.html",null,1421265468],
["10351010","AJ","http://ajcreativeenergy.blogspot.com/2015/01/sweet-valentine.html",null,1421275402],
["10351111","Shaz in Oz.x","http://calligraphycards-shazinoz.blogspot.com.au/",null,1421283549],
["10351423","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/01/chnc-challenge-extra-for-january-mid.html",null,1421313915],
["10351527","Brenda B","https://butlersabroad.wordpress.com/2015/01/15/sparkles-monthly-challenge-raise-a-glass-to-the-new-year/",null,1421324448],
["10351542","Brenda B","https://butlersabroad.wordpress.com/2015/01/15/mid-month-reminder-at-crafty-hazels-christmas-extra-challenge/",null,1421325444],
["10351679","Vinita","http://madewithlovencare.blogspot.in/2015/01/case-ing-christmas-card-challenge-2.html",null,1421330759],
["10351681","Laura","http://beadsbuttonsandbirds.blogspot.co.uk/2015/01/dream-little-sleepy-head.html",null,1421330805],
["10351708","kbrandy4","http://hazelshandmadecrafts.blogspot.co.uk/2015/01/happy-love-bug.html",null,1421331943],
["10351738","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/01/happy-hopper-kalender-kaart.html",null,1421333259],
["10351865","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/01/white-wedding-lotv.html?m=1",null,1421339525],
["10351898","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/01/faux-tiling-card.html",null,1421341902],
["10351961","Brenda in IN","http://inkspiredtostamp.blogspot.com",null,1421346386],
["10351983","Darlene Pavlick","http://www.darscraftycreations.blogspot.com/2015/01/in-pink.html",null,1421347463],
["10352028","Lynn","http://lynnscraftycorner.blogspot.co.uk/2015/01/nbus.html",null,1421349748],
["10352036","kanda","http://kandacreativemoments.blogspot.co.uk/2015/01/new-and-cute.html",null,1421350490],
["10352142","AJ","http://ajcreativeenergy.blogspot.com/2015/01/snowman-wishes.html",null,1421357964],
["10352203","Kate P.","http://manualidades-mamapez5.blogspot.com.es/2015/01/trying-something-different.html",null,1421363000],
["10352241","Mary H.","http://carolinacardsbymaryh.blogspot.com/2015/01/deedees-digis-happy-brrrr-day.html",null,1421367173],
["10353010","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/01/ccayr-january-mid-month-inspiration.html",null,1421419238],
["10353064","meg","http://bitsandpiecec.blogspot.com/2015/01/animal-antics.html",null,1421421663],
["10353099","Sue J 3","http://olliesmam.blogspot.co.uk/2015/01/christmas-card-with-snippets.html",null,1421422787],
["10353238","Princess Judy","http://princess-judy.blogspot.com/2015/01/snippet-christmas-critters.html",null,1421430320],
["10353330","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/01/poppy-stamps-birthday-stack.html",null,1421435387],
["10353350","Lynn","http://lynnscraftycorner.blogspot.co.uk/2015/01/getting-organised.html",null,1421436706],
["10353636","dawn louise","http://www.craftingdawntilldusk.net/2015/01/twit-twoo.html?m=1",null,1421464857],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}