function resizeText(multiplier) {  if (document.body.style.fontSize == "") {    document.body.style.fontSize = "100%";  }  document.body.style.fontSize = multiplier + "%";}function resizeText2(multiplier) {  if (document.body.style.fontSize == "") {    document.body.style.fontSize = "100%";  }  document.body.style.fontSize = multiplier + "%";}function removejscssfile(filename, filetype){ var targetelement=(filetype=="js")? "script" : (filetype=="css")? "link" : "none" //determine element type to create nodelist from var targetattr=(filetype=="js")? "src" : (filetype=="css")? "href" : "none" //determine corresponding attribute to test for var allsuspects=document.getElementsByTagName(targetelement) for (var i=allsuspects.length; i>=0; i--){ //search backwards within nodelist for matching elements to remove  if (allsuspects[i] && allsuspects[i].getAttribute(targetattr)!=null && allsuspects[i].getAttribute(targetattr).indexOf(filename)!=-1)   allsuspects[i].parentNode.removeChild(allsuspects[i]) //remove element by calling parentNode.removeChild() }}function getUrlVars(){var vars = [], hash;var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for(var i = 0; i < hashes.length; i++){hash = hashes[i].split('=');vars.push(hash[0]);vars[hash[0]] = hash[1];}return vars;}/*Shadowbox.init({    language: 'en',     players:    ["html","iframe"]});*/
