var charList=new Object(); charList["'"]="[[apostrophe]]"; charList["’"]="[[apostrophe-r]]"; charList["‘"]="[[apostrophe-l]]"; function tomEncode(inStr) { for (key in charList) { inStr=inStr.split(key); inStr=inStr.join(charList[key]); } return inStr; } function tomDecode(inStr) { for (key in charList) { inStr=inStr.split(charList[key]); inStr=inStr.join(key); } return inStr; } function checkFor(what,inwhat) { if (inwhat.indexOf(what)<0) { return false; } else { return true; } } window.domReadyCalls=[]; var alreadyrunflag=false; if (/Safari/i.test(navigator.userAgent)) { var _timer=setInterval(function(){ if (/loaded|complete/.test(document.readyState)) { clearInterval(_timer); domReadyTrigger(); }}, 10); } else if (document.addEventListener) { document.addEventListener('DOMContentLoaded', function(){ domReadyTrigger(); }, false); } else if (document.all && !window.opera) { document.write('