function LinkToLeftFrame (wha){
	this.parent.Main.location =  wha + 'info.htm';
}
function mdown (theCell){
var aCell
	if (theCell.className != 'subitem')
	{
		var hDivs=document.getElementsByTagName('Div');
		for (i=0; i < hDivs.length; i++)
		{
			var aDiv = hDivs[i];
			if (aDiv.id.substr(0,3) == 'sub')
			{
				aDiv.style.display = "none"
			}
		}
	}
	var arrCells=document.getElementsByTagName('td')
	for (i=0; i < arrCells.length; i++) 
        {
	var aaCell = arrCells[i]
			if (aaCell.id.substr(0,3) == 'arr')
		{		

			aaCell.innerHTML = '&nbsp;';
			}
			aaCell.style.textDecoration = 'none'	
	}
	
	if (theCell.id.substr(0,5) != 'super')
		{
		document.getElementById('arr' + theCell.id).innerHTML = '&#171;'
		//this.location = theCell.id + '.htm';
		}

	if (theCell.id.substr(0,5) == 'super')
	{
	theCell.style.textDecoration = 'underline';
	document.getElementById('sub' + theCell.id.substr(5,1)).style.display = "block"
	}
}

function mover (theCell){
}
function mup (theCell){
}
function mout (theCell){
}

