function OpenTroopSite(obj)
{
  var LinkURL=obj.value;
  if (LinkURL!="none")
  {
	window.open(LinkURL,"_top");
  }
}

function suppress(obj)
{
	var browser=navigator.appName;
	var thisobjid = obj.id;
	var linkobj;
	var otherobjid;
	if (browser=='Microsoft Internet Explorer')
	{
    	for (x=0;x<document.links.length;x++)
    	{
    		try
    		{
    			otherobjid=document.links.item(x).id;	
    		}
    		catch(err)
    		{
    		window.alert(err.description);
    		}
    		if (otherobjid.substr(0,6)=='screen')
    		{
    			if (otherobjid!=thisobjid)
    			{
    				document.links.item(x).style.visibility='hidden';
    			}
    		}
    	}
	}
}
function unsuppress()
{
	var otherobjid;
	for (x=0;x<document.links.length;x++)
	{
		otherobjid=document.links.item(x).id;		
		if (otherobjid.substr(0,6)=='screen')
		{
			document.links.item(x).style.visibility='visible';
		}
	}
}

