<script type="text/javascript">
$(document).ready(function() {
// Just change the string within confirm() to whatever needs to be confirmed.
// Change link selector to whatever link triggers the confirmation.
$("a.ext").click(function() {
var r= confirm("Disclosure:\n\nYou are now leaving our website. You will be viewing material from other web sites that may not be regulated under the same standard as Registered Securities Firm / Broker-Dealers.\n\nOur company makes no representation as to the completeness or accuracy of the information provided at these sites. We accept no liability for any direct or consequential loss arising from any use of this information or its content. Nor is the company liable for any direct or indirect technical or system issues or any consequences arising out of your access to or your use of third party technologies, sites, information and programs made available through these sites. When you access one of these websites, you are leaving our website and assume total responsibility and risk for your use of the websites you are linking to.");
if(r == true){
return true;
}
else{
return false;
}
});
});
</script>