

	function MMStart( name, type ) {
		document.write('<div class="Popup" id="'+name+'" onmouseover = " showPopup( '+name+' ); return true; " onmouseout  = " hidePopup( '+name+' ); return true; " >');
	}

	function MMItem( name, child_oname, title, link, tooltip, child_flag, current_flag ) {

		if ( child_flag == 1 ) {
			document.write('<div style="z-order: 1;" class="PopupItem" id="'+name+'" onmouseover = " showPopup( '+child_oname+' ); return true; " onmouseout  = " hidePopup( '+child_oname+' ); return true; " >');
			if ( current_flag == 1 ) {
				document.write('<div class="TopMenuItem"><a href="'+link+'" class="TopMenuItem" title="'+tooltip+'">'+'<img src="/images/template/arrright.gif" width="9" height="15" align="right" alt="" border="0" />'+title+'</a></div>');
			} else {
				document.write('<div class="TopMenuItem"><a href="'+link+'" class="TopMenuItem" title="'+tooltip+'">'+'<img src="/images/template/arrright.gif" width="9" height="15" align="right" alt="" border="0" />'+title+'</a></div>');
			}
			document.write('</div>');
		} else {
			document.write('<div class="PopupItem" id="'+name+'">');
			if ( current_flag == 1 ) {
				document.write('<div class="TopMenuItem"><a href="'+link+'" class="TopMenuItem" title="'+tooltip+'">'+title+'</a></div>');
			} else {
				document.write('<div class="TopMenuItem"><a href="'+link+'" class="TopMenuItem" title="'+tooltip+'">'+title+'</a></div>');
			}
			document.write('</div>');
		}
	}

	function MMSeparator( name, type ) {
		document.write('<div class="TopMenuSeparator"><img src="/images/template/sp.gif" width="1" height="1" alt="" /></div>');
	}

	function MMEnd( name, type ) {
		document.write('</div>');
	}


	






