//----------------------------------------------//
//	Copyright:(C)2002 The Dowebs.net	//
//	Homepage :http://www.dowebs.net		//
//----------------------------------------------//
function MenuObj(a,b,c){	//±³¾°É«¶¨Òå
	this.Caption=a; 	//Ãû³Æ
	this.Url=b;			//ÍøÖ·
	this.Icon=c;
}
function showmenu(theMenus){
	show="<table width='100%' border='0' cellspacing='4'>";
	for(var i=0;i<theMenus.length;i++){
		show=show+"<tr><td height='30' class=up onMouseDown=\"className='down'\" onMouseUp=\"className='up'\" onMouseOut=\"className='up'\" onMouseOver=\"className='over'\" onClick=\""+theMenus[i].Url+"\"><table width='100%'><tr><td width='10%' align=center> "+theMenus[i].Icon+"</td><td width='90%'>"+theMenus[i].Caption+"</td></tr></table></td></tr>";
	}
	show=show+"</table>";
	document.write(show);
}
function showtoolmenu(theMenus){
	show="<table border='0' cellspacing='4'><tr>";
	for(var i=0;i<theMenus.length;i++){
		show=show+"<td height=26 width=70 class=up onMouseDown=\"className='down'\" onMouseUp=\"className='up'\" onMouseOut=\"className='up'\" onMouseOver=\"className='over'\" onClick=\""+theMenus[i].Url+"\">"+theMenus[i].Icon+theMenus[i].Caption+"</td>";		
	}
	show=show+"</tr></table>";
	document.write(show);
}