
/* - external_links.js - */
// http://www.ohiolegalservices.org/portal_javascripts/external_links.js?original=1
function fixExitLinks(){var myLinks=document.links;for(var i=0;i<myLinks.length;i++){var thehref=myLinks[i].href.toString();if(thehref.indexOf("http://www.ohiolegalservices.org")==-1){myLinks[i].onclick=function confirmExit(){if(confirm('You are now leaving the Ohio Legal Services Website.  \nThe Ohio Legal Services programs cannot endorse nor vouch for the accuracy or currency of any third-party website or advertisement.  \nWe strongly encourage you to consult a lawyer for specific answers to your personal legal questions.')){return true} else{return false}}}}}
if(window.addEventListener)
window.addEventListener("load",fixExitLinks,false);else if(window.attachEvent)
window.attachEvent("onload",fixExitLinks);
