<!--
top.location.target="_top"
if(window.location.target != "_top") {top.location.href=window.location.href}
// -->

<!--
// thanks to randomwalks.com
function targetLinks(boNew)
{
   if (boNew) where = "_blank";
   else where = "_self";
   for (var i=0; i<=(document.links.length-1); i++)
   {
   document.links[i].target = where;
   }
}
//-->