var Mencione = new Object(); Mencione.save = function() { var now = new Date(); var debug = false; // this is set by php if (window.location.hash == '#Mencione:Debug') { debug = true; }; var path = 'http://mencione.com/Mencione/?record&key=35366b756b536471373135416c6f366a5a757435363231'; path = path.replace(/^https?:/, window.location.protocol); // Loop through the different plug-ins to assemble the query string for (var developer in this) { for (var plugin in this[developer]) { if (this[developer][plugin] && this[developer][plugin].onsave) { path += this[developer][plugin].onsave(); }; }; }; // Slap the current time on there to prevent caching on subsequent page views in a few browsers path += '&'+now.getTime(); // Redirect to the debug page if (debug) { window.open(path+'&debug&errors', 'MencioneLiveDebug'+now.getTime()); return; }; var ie = /*@cc_on!@*/0; if (!ie && document.getElementsByTagName && (document.createElementNS || document.createElement)) { var tag = (document.createElementNS) ? document.createElementNS('http://www.w3.org/1999/xhtml', 'script') : document.createElement('script'); tag.type = 'text/javascript'; tag.src = path + '&serve_js'; document.getElementsByTagName('head')[0].appendChild(tag); } else if (document.write) { document.write('<' + 'script type="text/javascript" src="' + path + '&serve_js"><' + '/script>'); }; }; if (!Mencione.SI) { Mencione.SI = new Object(); } Mencione.SI.Referrer = { onsave : function() { var encoded = 0; if (typeof Mencione_SI_DocumentTitle == 'undefined') { Mencione_SI_DocumentTitle = document.title; } else { encoded = 1; }; var referer = (window.decodeURI)?window.decodeURI(document.referrer):document.referrer; var resource = (window.decodeURI)?window.decodeURI(document.URL):document.URL; return '&referer=' + escape(referer) + '&resource=' + escape(resource) + '&resource_title=' + escape(Mencione_SI_DocumentTitle) + '&resource_title_encoded=' + encoded; } }; function isdefined( variable) { return (typeof(window[variable]) == "undefined")? false: true; } function ol_get_domain(str) { if (str.substr(0,7) == 'http://') str = str.substr(7); if (str.substr(0,8) == 'https://') str = str.substr(8); str = str.substr(0,str.indexOf('/')); str = str.replace('www.',''); return str; } if (!isdefined('addLoadEvent')) { function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } }