document.write(''); function getElementByIdCompatible (the_id) { if (typeof the_id != 'string') { return the_id; } if (typeof document.getElementById != 'undefined') { return document.getElementById(the_id); } else if (typeof document.all != 'undefined') { return document.all[the_id]; } else if (typeof document.layers != 'undefined') { return document.layers[the_id]; } else { return null; } } var logo = getElementByIdCompatible("pslogo"); var link = logo.parentNode; link.href = link.href.replace(/^http:/g, "https:"); link.onclick = function(e) { var wnd = window.open('', 'pslanding', 'width=530,height=550'); link.target = 'pslanding'; link.click(); }; var altText = "Pharming Shield certified websites are continuously monitored for pharming attacks 24x7 365 days a year."; logo.title = logo.alt = altText; logo.oncontextmenu = function() { alert('Illegal copying of the Pharming Shield logo is prohibited by law. To enroll in the Pharming Shield program please visit Catbird Networks @ www.catbird.com.'); return false; };