//Open links in new window option- By spk100 (spk100@yahoo.com)
//Script featured on Dynamic Drive
//Visit http://www.dynamicdrive.com for this script and more

function hyperlinks(target)
{
   if (target) where = "_blank";
   else where = "_self";
   for (var i=0; i<=(document.links.length-1); i++)
   {
   document.links[i].target = where;
   }
}

