// JavaScript Document
function AbtMenu()
{
x=document.getElementById('menu').style.display
y=document.getElementById('MainTbl').offsetLeft
z=document.getElementById('check').offsetLeft
lft=parseInt(z)+parseInt(y)

if(x=='none')
{
document.getElementById('menu').style.display=''
document.getElementById('menu').style.left=lft-50
}
//alert(z+'*'+y+'='+lft)
}

function HideMenu()
{
document.getElementById('menu').style.display='none'
}
//setInterval('HideMenu()',10000 
						
function menu()
{
document.write("<table cellpadding='0' cellspacing='0' border='0' width='100%'><tr><td id='mailto'><a href='management.htm'>Management</a></td><td id='mailto'><a href='advisor_consultant.htm'>Advisors and Consultants</a></td><td id='mailto'><a href='project_exp.htm'>Project Experience</a></td></tr></table>")
}
