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("21Dec2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MjFkZWMyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 weeks ago");
blenza_setAlphasort("0");
blenza_unsetmeme("21Dec2019");
blenza_linkies("thumb","pixiescraftyworkshop","21Dec2019","849667954",3,
[
// MjFkZWMyMDE5
["11418954","Gail Scott","https://ilikepaper01.blogspot.com/2019/12/snowman-ornament.html",null,1576979065],
["11419014","Aquarius","https://aquarius-aquariusblog.blogspot.com/2019/12/pixie-snippets-368.html",null,1577010169],
["11419044","Janes Journal","https://jane-janesjournal.blogspot.com/2019/12/winter-soltice-2019.html",null,1577019819],
["11419050","Sandra H","https://sandra-nanagramps.blogspot.com/2019/12/pixies-snippets-challenge-368.html",null,1577020799],
["11419080","kanda","https://kandacreativemoments.blogspot.com/2019/12/merry-snippetmas.html",null,1577025606],
["11419154","Viv","https://vivsvisuals.blogspot.com/2019/12/christmas-peace.html",null,1577038771],
["11419166","ValeryAnne","https://itsanalienlife.blogspot.com/2019/12/cracker-anyone.html",null,1577042237],
["11419171","Liz Cavill","https://crafty-lizc.blogspot.com/2019/12/owl-birthday-card.html",null,1577045818],
["11419204","Jeanne H","https://rebalicreates.blogspot.com/2019/12/another-christmas-card.html",null,1577058736],
["11419205","SHartl","https://www.flickr.com/photos/75112453@N05/49260824113/in/dateposted-public/",null,1577058993],
["11419206","Pam Sebring","http://psebring.blogspot.com/2019/12/tinsel-tangle.html",null,1577059421],
["11419221","Meghan Kennihan","https://www.madebymeghank.com/2019/12/cas-winter-birthdays.html",null,1577064996],
["11419264","karenladd","https://karen94803.blogspot.com/2019/12/poinsettia-christmas.html",null,1577085015],
["11419348","Carole Dixon","https://cardandcake.blogspot.com/2019/12/stag-and-robin.html",null,1577119969],
["11419422","Becca","https://www.flickr.com/photos/133625822@N05/49264956652/in/dateposted-public/",null,1577148797],
["11419467","LesleyG","https://lesleyscraftroom.blogspot.com/2019/12/happy-christmas-to-you-and-yours.html",null,1577175951],
["11419501","Kikka","https://kikkacards.blogspot.com/2019/12/christmas-tag-2019-1.html",null,1577193884],
["11419563","Elizabeth","https://silverscrappers.blogspot.com/2019/12/christmas-eve-snippet-card.html",null,1577211898],
["11419579","Vicky","https://craftingclare.blogspot.com/2019/12/making-winter-scene.html",null,1577222387],
["11419582","Susan B","https://cardmakersgarret.blogspot.com/2019/12/hark-herald-angels-sing.html",null,1577222925],
["11419614","Greta H","https://ggnursecreations.blogspot.com/2019/12/merry-christmas.html",null,1577249835],
["11419640","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/12/its-wednesday-and-its-christmas.html",null,1577262429],
["11419646","Shaz in Oz.x","https://calligraphycards-shazinoz.blogspot.com/2019/12/the-christ-of-christmas-woyww.html?m=1",null,1577264253],
["11419655","Kath","https://handmadebykath.blogspot.com/2019/12/merry-christmas.html",null,1577269116],
["11419704","Christine Smith","https://ramblingsandcraft.blogspot.com/2019/12/happy-christmas.html",null,1577293753],
["11419732","Karthikha","https://loveforkrafts.blogspot.com/2019/12/washitape-thank-you-card.html",null,1577317954],
["11419740","Trina P.","https://phamtasticdesign.blogspot.com/2019/12/merry-christmas.html",null,1577327037],
["11419798","April","https://paperlilyleaf.blogspot.com/2019/12/merry-christmas-you-are-enjoying-this.html",null,1577360501],
["11419873","NinaS","https://ninascraftyplace.blogspot.com/2019/12/bozic-christmas.html",null,1577385931],
["11419888","Andre M.","https://www.splitcoaststampers.com/gallery/photo/2962425?&cat=500&ppuser=441806",null,1577395562],
["11419891","Suzanne H","https://flic.kr/p/2i5Ecmz",null,1577396687],
["11419979","Lilian B","https://lillyb46.blogspot.com/2019/12/last-post-of-2019.html",null,1577438025],
["11419999","Carol L","https://ourlittleinspirations.blogspot.com/2019/12/christmas.html",null,1577448490],
["11420037","AlisonC","https://cranberryandeggplant.blogspot.com/2019/12/take-breath.html",null,1577458043],
["11420134","Alice","https://volidicarta.blogspot.com/2019/12/gift-bag-holder.html",null,1577495334],
["11420148","Heather Mills","https://wirewrapture.blogspot.com/2019/12/40th-birthday.html",null,1577501658],
["11420170","Maxine D","https://kiwimeskreations.blogspot.com/2019/12/a-golden-50.html",null,1577513507],
["11420235","Valerija","https://moje-veselje.blogspot.com/2019/12/bozicna-zvezda-z-blescicami.html",null,1577539039],
["11420267","Janis in ID","https://herpeacefulgarden.blogspot.com/2019/12/friends-and-quilts.html",null,1577544192],
["11420419","Lynne in NI","https://rubydoobydoocrafts.blogspot.com/2019/12/floral-birthday.html",null,1577571282],
["11420452","Sandy J","https://stampingwriter.blogspot.com/2019/12/christmas-snippets.html",null,1577580849],
["11420455","CarolG NZ","https://creationsnz.blogspot.com/2019/12/gnome-y-christmas.html",null,1577581468],
["11420517","Kathy Asper","https://myasperations.blogspot.com/2019/12/two-bears-and-fairy.html",null,1577596237],
["11420534","Megan ","https://merrycardcorner.blogspot.com/2019/12/aloe-birthday.html",null,1577603010],
["11420566","Jane Willis","https://onionsandpaper.blogspot.com/2019/12/butterflies-and-tags.html",null,1577617835],
["11420735","Helen","https://helenscrafthaven.blogspot.com/2019/12/cheerful-critters.html",null,1577658692],
["11420765","ionabunny","https://craftynomad.blogspot.com/2019/12/christmas-charades.html",null,1577665512],
["11420781","glennis f NZ","https://creatingcards-grf.blogspot.com/2019/12/bbq-master.html",null,1577669429],
["11420834","Lia","https://liadesignandso.blogspot.com/2019/12/warm-winter-wishes.html",null,1577691403],
["11420836","Robyn Oliver","https://waterlilycardsbyrobyn.blogspot.com/2019/12/merry-christmas_30.html",null,1577691872],
["11420848","Majda","https://majdinustvarjalninemir.blogspot.com/2019/12/predpraznicno-ustvarjanje.html",null,1577700424],
["11420879","Donna W.","https://designbydonna.blogspot.com/2019/12/snippets-birthday.html",null,1577715015],
["11420900","KT Fit Kitty","http://ktdesigns2013.blogspot.com/2019/12/all-snippets-leftovers.html",null,1577718454],
["11420948","NanaConnie","https://mygrammysattic.blogspot.com/2019/12/skinny-snowman-too-much-workout.html",null,1577734446],
["11421009","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/12/adorable-vintage-snowmen.html",null,1577760589],
["11421079","linby","https://craftylinby.blogspot.com/2019/12/die-cut-waste-snippets.html",null,1577798977],
["11421270","Pat","https://colourfulcardcreations.blogspot.com/2020/01/a-year-in-cards.html",null,1577847070],
["11421361","Creative Em","https://www.creative-em.com/2020/01/13-wonderfully-white-at-rainbow-card.html",null,1577885061],
["11421373","Lynne R","https://lynnescrafthaven.blogspot.com/2020/01/recycling-again.html",null,1577889206],
["11421636","Chandhini","https://thecreativetwins.blogspot.com/2020/01/hello-card-peek-boo-card.html",null,1577960055],
["11421651","Janice","https://mycraftroommakes.blogspot.com/2020/01/masculine-birthday-card.html?showComment=1577964141126#c2702134639463243671",null,1577964186],
["11421838","Keti's Projects","https://ketrinslittleprojects.blogspot.com/2019/12/srecno-v-2020.html",null,1578003097],
["11421918","tina z. treebug","https://www.treebug.org/2019/12/reciklirani-novoletni-voscilnici-81.html",null,1578036886],
["11421971","JennyH","https://jennyhurleycards.blogspot.com/2020/01/new-things.html",null,1578052489],
["11422140","Susan Sudbury","http://edenland.ca/index.php/2020/01/03/panda-greetings/",null,1578102445],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}