
mnu_width=150;
m_top=0;
m_left=10;
m_color="#000000";
m_bgcolor="#ffffff";
function InitMenu(left,top,width,color,bgcolor)
{
	mnu_width=width;
	m_left=left;
	m_top=top;
	m_color=color;
	m_bgcolor=bgcolor;
}
function BeginMenu(mnu_name,mnu_title)
{
	
	document.write("<div id="+mnu_name+"_title style='position:relative;top:"+m_top+";left:"+m_left+";'>");
	
	document.write("<img src=topleft.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:20;'>");
	document.write("<img src=topcenter.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:"+mnu_width+";height:20;'>");
	document.write("<img src=topright.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:20;cursor:hand;' onclick=SwitchShow('"+mnu_name+"')>");
	
	document.write("<div style='cursor:hand;position:relative;top:"+(m_top-14)+";left:"+(m_left+16)+";width:"+mnu_width+";height:20;font-size:9pt;font-weight:600;color=#000000;' onclick=SwitchShow('"+mnu_name+"')>"+"&nbsp;"+mnu_title+"</div>");

	document.write("<div id="+mnu_name+"_title2 style='visibility=hidden;display:none;'>");
	document.write("<img src=bottomleft.jpg style='position:relative;top:"+(m_top-20)+";left:"+m_left+";width:20;height:4;'>");
	document.write("<img src=bottomcenter.jpg style='position:relative;top:"+(m_top-20)+";left:"+m_left+";width:"+mnu_width+";height:4;'>");
	document.write("<img src=bottomright.jpg style='position:relative;top:"+(m_top-20)+";left:"+m_left+";width:20;height:4;'>");
	document.write("</div>");

	document.write("</div>");

	document.write("<div id="+mnu_name+" style='position:relative;top:"+m_top+";left:"+m_left+";'>");
	
	m_top-=20;
	document.write("<div>");
	document.write("<img src=left.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:10;'>");
	document.write("<a nohref style='position:relative;top:"+(m_top)+";left:"+(m_left)+";width:"+mnu_width+";height:10;color:"+m_color+";background-color:"+m_bgcolor+";font-size:4;'>");
	document.write(" </a>");
	document.write("<img src=right.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:10;'>");
	document.write("</div>");
	m_top-=4;
}
function EndMenu()
{
	document.write("<div>");
	document.write("<img src=bottomleft.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:4;'>");
	document.write("<img src=bottomcenter.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:"+mnu_width+";height:4;'>");
	document.write("<img src=bottomright.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:4;'>");
	document.write("</div>");
	document.write("</div>");
}
function InsertItem(description,linkto)
{
	document.write("<div>");
	document.write("<img src=left.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:16;'>");
	document.write("<a href='"+linkto+"' style='position:relative;top:"+(m_top-4)+";left:"+(m_left)+";width:"+mnu_width+";height:16;color:"+m_color+";background-color:"+m_bgcolor+";alink:#000080'>");
	document.write(description+"</a>");
	document.write("<img src=right.jpg style='position:relative;top:"+m_top+";left:"+m_left+";width:20;height:16;'>");
	document.write("</div>");
	m_top-=4;
}
function ShowMenu(mnu_name,status)
{
	if(status==0)
	{
		document.all[mnu_name].style.display="none";
		document.all[mnu_name].style.visibility='hidden';
		document.all[mnu_name+"_title2"].style.display="block";
		document.all[mnu_name+"_title2"].style.visibility='visible';
		return;
	}
	document.all[mnu_name+"_title2"].style.display="none";
	document.all[mnu_name+"_title2"].style.visibility='hidden';
	document.all[mnu_name].style.display="block";
	document.all[mnu_name].style.visibility='visible';
	
}
function SwitchShow(mnu_name)
{
	if(document.all[mnu_name].style.visibility!="hidden")
	{
		ShowMenu(mnu_name,0);
	}else
	{
		ShowMenu(mnu_name,1);
	}
}
