function doNuhn() {}

function getRefToDiv(divID,oDoc) {
	if( document.getElementById ) { return document.getElementById(divID); }
	if( document.all ) { return document.all[divID]; }
	if( !oDoc ) { oDoc = document; }
	if( document.layers ) {
		if( oDoc.layers[divID] ) {
			return oDoc.layers[divID];
		} else {
			for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {
				y = getRefToDiv(divID,oDoc.layers[x].document);
			}
			return y;
		}
	}
	return false;
}

function insert_about(mTable) {
	//mTable = document.getElementById('menu_table');
	var myReference = getRefToDiv(mTable);
	if( !myReference ) { window.alert('Nothing works in this browser'); return; }
	
	if (myReference.rows.length < 15)
	{
		
		var mRow;
		var mCell;
		mRow = myReference.insertRow(4);
		mCell = mRow.insertCell(0);
		mCell.innerHTML = "<a style='text-indent: 20px' class='menu' href='/about/csi_partners.html'><font color='#CCCCCC'>&gt; Partners</font></a>"
		mRow = myReference.insertRow(4);
		mCell = mRow.insertCell(0);
		mCell.innerHTML = "<a style='text-indent: 20px' class='menu' href='/about/csi_executives.html'><font color='#CCCCCC'>&gt; Executive</font></a>"		
		mRow = myReference.insertRow(4);
		mCell = mRow.insertCell(0);
		mCell.innerHTML = "<a style='text-indent: 20px' class='menu' href='/vision.html'><font color='#CCCCCC'>&gt; CSI Vision</font></a>"
	}	
}