<h3>Collection of linking methods and notes about them</h3>
<table ">
<tr>
<th width="100px">link example</th>
<th>notes</th>
</tr>
<tr>
<td><a href="http://google.com">Standard HTML Link</a></td>
<td>Open in new tab in context menu</td>
</tr>
<tr>
<td><script>
var theString = "JavaScript Link";
var theLink = theString.link("http://google.com");
document.write(theLink);</script></td>
<td>Javascript Link() document write</td>
</tr>
<tr>
<!--" -->
<td><a href="http://google.com" onclick="var e = arguments[0]; e.preventDefault();alert('Hey!');top.document.location='http://yahoo.com';">Inline onclick</a></td>
<td>Displays the Open in new Tab right-click menu option but when selected, follows anchor URL, not onclick.</td>
</tr>
<tr>
<td>
<a href="http://google.com" title="mock link" id="theLink" name="theLinkName">Google.com</a></td>
<td>onclick event assigned by JavaScript: Right-click opens Google, Left-click opens Yahoo.</td>
</tr>
<tr>
<td>
<div id="showHideMenu">
<a href="http://google.com"><div id="SubMenuItem_0" class="SubMenuItem" style="float: none; position: static;">link inside div</div></a></div>
</td><td>IE9 does not show Open in New Tab with this</td></tr>
<!-- most promising example -->
<tr><td>
<a href="http://google.com"><span id="SubMenuItem_0" class="SubMenuItem" style="float: none; position: static;">link inside span</span></a>
</td><td>IE9 <b>does</b> show Open in New Tab with span inside a href as long as the span does not have display:block, position:absolute, clear:both and is not in a table
</td></tr>
<!-- most promising example -->
<!-- most promising example -->
<tr><td>
<span id="showHideMenu" style="display:block;">
<a...