function goToMenu(no,text) {
	var content = "";
	// set breadcurd

	// item in menu

	if (no == -1) {
		content += "<a href=index.php>HOME</a> > " + text.toUpperCase() + "<p><br>";
	}
	else if (no == 0) {
		content += "<a href=index.php>HOME</a> > " + text.toUpperCase() + "<p><br>";
	}
	else {// if item not in menu
		content += "<a href=index.php>HOME</a> > <a href=" + m1_url[no] + ">" + m1_name[no].toUpperCase() + "</a> > "
		if (text.indexOf("</a>") == -1) content += text.toUpperCase();
		else content += text.substring(0,text.indexOf("</a>")) + text.substring(text.indexOf("</a>")).toUpperCase();
		content += "<p><br>";
	}
/*
	if (no > -1) {
		content += "<p><center><font class=special>Section: <a href=" + m1_url[no] + ">" + m1_name[no] + "</a> (" + m2_name[no].length + ")</font></center>";
		for (var x=0; x<m2_name[no].length; x++) content += "<div style='writing-mode: tb-rl; filter: flipH flipV; width:120px; border:1px solid #dddddd; margin:2px; padding:3px; cursor:pointer;' onMouseOver='this.style.background = \"#29bbff\";' onMouseOut='this.style.background = \"#ffffff\";' onClick='javscript:location.href=\"" + m2_url[no][x] + "\";'><div style='padding:2px; float:left;'><div style='width:5px; height:5px; border:1px solid #666666; background:#ffffff;'></div></div><div style='writing-mode: tb-rl; filter: flipH flipV; color:#000000; margin-left:5px;'> &nbsp; " + m2_name[no][x] + "</div></div>";
	}
*/

	document.write(content);


	return true;
}