/*=============================================================================*\
|| ########################################################################### ||
|| # Product: Tab and Link Manager v4.0.006                                  # ||
|| # ----------------------------------------------------------------------- # ||
|| # Copyright ©2009 Mosh Shigdar, Wolfshead Solutions. All Rights Reserved. # ||
|| # This file may not be redistributed in whole or significant part.        # ||
|| # ------------ TAB AND LINK MANAGER IS NOT FREE SOFTWARE ---------------- # ||
|| #                 http://www.wolfshead-solutions.com                      # ||
|| ########################################################################### ||
\*=============================================================================*/
function wsLinks(){if(!document.getElementsByTagName)return;var anchors=document.getElementsByTagName("a");for(var i=0;i<anchors.length;i++){var anchor=anchors[i];if(anchor.getAttribute("href")&&anchor.getAttribute("rel")=="wsBlank"){anchor.target="_blank"}if(anchor.getAttribute("href")&&anchor.getAttribute("rel")=="wsSelf"){anchor.target="_self"}if(anchor.getAttribute("href")&&anchor.getAttribute("rel")=="wsParent"){anchor.target="_parent"}if(anchor.getAttribute("href")&&anchor.getAttribute("rel")=="wsTop"){anchor.target="_top"}}}window.onload=wsLinks;