// JavaScript Document

var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='<font size="1" face="Verdana">&nbsp;&nbsp;<a href="../company/background.htm" class="head">About Us</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../company/globalbusiness.htm" class="head">Global Business</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../company/investor.htm" class="head">Investor</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../company/communityandenvironment.htm" class="head">Community And Environment</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../company/career.htm" class="head">Career</a></font>'

submenu[1]='<font size="1" face="Verdana">&nbsp;&nbsp;<a href="../products/telecomproducts/index.htm" class="head">Telecommunication</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../products/itproducts/index.htm" class="head">IT</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../products/maison/index.htm" class="head">Maison</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../products/agents/index.htm" class="head">Agents</a><br></font>'

submenu[2]='<font size="1" face="Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../services/telecom/index.htm" class="head">Telecom</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../services/softwaredesign/index.htm" class="head">Software Design</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="../services/investment/index.htm" class="head">Investment</a></font>'

submenu[3]='<font size="1" face="Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="maison/index.htm" class="head">Maison Memebr</a>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<a href="../support/sitemap/index.htm" class="head">Site Map</a>&nbsp;&nbsp;&nbsp; &nbsp;<a href="../support/privacy/index.htm" class="head">Privacy Policy</a></font>'

submenu[4]='<font size="1" face="Verdana">&nbsp;&nbsp;</font>'

submenu[5]='<font size="1" face="Verdana">&nbsp;&nbsp;</font>'


//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=80


/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()

}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide,MM_swapImgRestore())
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)


}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)

}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
