/*
vMenuWidth=160
sel='0'
homePage="index_home.htm"
*/
//-----------------------------
function init(){
eval(prevID).className="Active"
eval(prevID).style.cursor="default"
makeMenu()
eval(DispAreaName).location=eval(prevID).href
//adjDisplay() 
}
//-----------------------------
function makeMenu() {
for (i=0;i<document.anchors.length;i++){
	obj=document.anchors[i]
	obj.setAttribute("target",DispAreaName)
	obj.attachEvent("onclick",clk)
	}
}
//-----------------------------
function clk(){
ID=event.srcElement.id 
eval(ID).style.background="yellow"
eval(ID).style.cursor="default"

eval(prevID).style.background=""
eval(prevID).style.cursor="hand"

prevID=ID
}
//-----------------------------
function adjDisplay(){ 
/*
xScrnWid=document.body.clientWidth
xDispWidth=xScrnWid-vMenuWidth
document.all.oMain.style.pixelWidth= xDispWidth
*/
}
//-----------------------------
