<script type="text/javascript">
window.onload = OnHash;
function OnHash()
{
var monitorHash = window.location.hash;
var sIndex = monitorHash.match("[^#MonitorTabIndex=][0-9]*");
if (parseInt(sIndex) > 0) {
displayModule(sIndex);
alert(monitorHash);
}
function setMonitorTabIndex()
{ window.location.hash = "MonitorTabIndex=1";return true; }
</script>