var m1menus    = new Array();
var m1isShow   = new Boolean(); 
m1isShow=false;
var m1isdown   = new Boolean();
m1isdown=false;
var m1numberofsub=0;
var m1usestatus=false;
var m1popTimer = 0;
m1menucolor='#FFFFFF';m1fontcolor='#000000';m1menuoutcolor='#F0F0F0';m1menuincolor='#FFFFFF';m1menuoutbordercolor='#C0C0C0';m1menuinbordercolor='#C0C0C0';m1midoutcolor='#EAEAEA';m1midincolor='#EAEAEA';m1menuovercolor='#000000';m1itemedge='0';m1subedge='1';m1menuunitwidth=1;m1menuitemwidth=160;m1menuheight=28;m1menuwidth='600';m1menuadjust=0;m1menuadjustV=2;m1fonts='font-family: Verdana; font-size: 9pt; color: #000000; ';m1cursor='hand';
var swipeSteps = 4;
var swipemsec = 25;
var swipeArray = new Array();
function swipe(el, dir, steps, msec) {
	if (steps == null) steps = swipeSteps;
	if (msec == null) msec = swipemsec;
	if (el.swipeIndex == null)
		el.swipeIndex = swipeArray.length;
	if (el.swipeTimer != null)
		window.clearTimeout(el.swipeTimer);
	swipeArray[el.swipeIndex] = el;
	el.style.clip = "rect(-99999, 99999, 99999, -99999)";
	if (el.swipeCounter == null || el.swipeCounter == 0) {
		el.orgLeft  = el.offsetLeft;
		el.orgTop  = el.offsetTop;
		el.orgWidth = el.offsetWidth;
		el.orgHeight  = el.offsetHeight;
	}
	el.swipeCounter = steps;
	el.style.clip = "rect(0,0,0,0)";
	window.setTimeout("repeat(" + dir + "," + el.swipeIndex + "," + steps + "," + msec + ")", msec);
}
function repeat(dir, index, steps, msec) {
	el = swipeArray[index];
	var left   = el.orgLeft;
	var top    = el.orgTop;
	var width  = el.orgWidth;
	var height = el.orgHeight;
	if (el.swipeCounter == 0) {
		el.style.clip = "rect(-99999, 99999, 99999, -99999)";
		return;
	}
	else {
		el.swipeCounter--;
		el.style.visibility = "visible";
		switch (dir) {
			case 2:
				el.style.clip = "rect(" + height*el.swipeCounter/steps + "," + width + "," + height + "," + 0 + ")";
				el.style.top  = top - height*el.swipeCounter/steps;
				break;
			case 8:
				el.style.clip = "rect(" + 0 + "," + width + "," + height*(steps-el.swipeCounter)/steps + "," + 0 + ")";
				el.style.top  = top + height*el.swipeCounter/steps;
				break;
			case 6:
				el.style.clip = "rect(" + 0 + "," + width + "," + height + "," + width*(el.swipeCounter)/steps + ")";
				el.style.left  = left - width*el.swipeCounter/steps;
				break;
			case 4:
				el.style.clip = "rect(" + 0 + "," + width*(swipeSteps - el.swipeCounter)/steps + "," + height + "," + 0 + ")";
				el.style.left  = left + width*el.swipeCounter/steps;
				break;
		}
		
		el.swipeTimer = window.setTimeout("repeat(" + dir + "," + index + "," + steps + "," + msec + ")", msec);
	}
}
var m1tmpleft="";
var m1tmptop="";
function hideSwipe(el) {
	window.clearTimeout(el.swipeTimer);
	el.style.visibility = "hidden";
	el.style.clip = "rect(-99999, 99999, 99999, -99999)";
	el.swipeCounter = 0;
	if(m1tmpleft!="")el.style.left = m1tmpleft;
	if(m1tmptop!="")el.style.top = m1tmptop;
}

function stoperror(){
return true;
}
window.onerror=stoperror;
function m1popOut() {
m1popTimer = setTimeout('m1allhide()', 500);
}
function getReal(el, type, value) {
	temp = el;
	while ((temp != null) && (temp.tagName != "BODY")) {
		if (eval("temp." + type) == value) {
			el = temp;
			return el;
		}
		temp = temp.parentElement;
	}
	return el;
}


function m1MenuRegister(menu) 
{
  m1menus[m1menus.length] = menu
  return (m1menus.length - 1)
}

function m1MenuItem(caption,command,target,isline,statustxt,level,img,sizex,sizey,pos){
	this.items = new Array();
	this.caption=caption;
	this.command=command;
	this.target=target;
	this.isline=isline;
	this.statustxt=statustxt;
	if(level!=null){m1numberofsub++;
	this.hasc=m1numberofsub;}
	this.level=level;
	this.img=img;
	this.sizex=sizex;
	this.sizey=sizey;
	this.pos=pos;
}

function m1Menu(caption,command,target,img,sizex,sizey,pos){
	this.items = new Array();
	this.caption=caption;
	this.command=command;
	this.target=target;
	this.img=img;
	this.sizex=sizex;
	this.sizey=sizey;
	this.pos=pos;
	this.id=m1MenuRegister(this);
}
function m1MenuAddItem(item)
{
  this.items[this.items.length] = item
  item.parent = this.id;
  this.children=true;
}

m1Menu.prototype.addItem = m1MenuAddItem;
m1MenuItem.prototype.addsubItem = m1MenuAddItem;

function m1toout(src){

src.style.borderLeftColor=m1menuoutbordercolor;
src.style.borderRightColor=m1menuinbordercolor;
src.style.borderTopColor=m1menuoutbordercolor;
src.style.borderBottomColor=m1menuinbordercolor;
src.style.backgroundColor=m1menuoutcolor;
src.style.color=m1menuovercolor;
}
function m1toin(src){

src.style.borderLeftColor=m1menuinbordercolor;
src.style.borderRightColor=m1menuoutbordercolor;
src.style.borderTopColor=m1menuinbordercolor;
src.style.borderBottomColor=m1menuoutbordercolor;
src.style.backgroundColor=m1menuincolor;
src.style.color=m1menuovercolor;
}
function m1nochange(src){
src.style.borderLeftColor=m1menucolor;
src.style.borderRightColor=m1menucolor;
src.style.borderTopColor=m1menucolor;
src.style.borderBottomColor=m1menucolor;
src.style.backgroundColor='';
src.style.color=m1fontcolor;

}
function m1allhide(){
	for(var nummenu=0;nummenu<m1menus.length;nummenu++){
		var themenu=document.all['m1Menu'+nummenu]
		var themenudiv=document.all['m1menudiv'+nummenu]
                m1nochange(themenu);
                m1menuhide(themenudiv);
                }
        for(nummenu=1;nummenu<=m1numberofsub;nummenu++){  
        	var thesub=document.all['m1submenudiv'+nummenu]      
        	m1submenuhide(thesub);
        	m1nochange(document.all['m1p'+nummenu]);
        	document.all["m1item"+nummenu].style.color=m1fontcolor;
        	}
}
function m1menuhide(menuid){

hideSwipe(menuid);
m1isShow=false;
}
function m1submenuhide(menuid){

menuid.style.visibility='hidden';
}
function m1menushow(menuid,pid){

menuid.style.left=m1posflag.offsetLeft+pid.offsetLeft+m1menuadjust;menuid.style.top=m1posflag.offsetTop+m1menutable.offsetHeight+m1menuadjustV;
if(m1menuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth+document.body.scrollLeft)
menuid.style.left=document.body.clientWidth+document.body.scrollLeft-m1menuitemwidth;
m1tmpleft=menuid.style.left;m1tmptop=menuid.style.top;swipe(menuid,2,4);
m1isShow=true;
}
function m1showsubmenu(menuid,pid,rid){

menuid.style.left=pid.offsetWidth+rid.offsetLeft;
menuid.style.top=pid.offsetTop+rid.offsetTop-3;
if(m1menuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth+document.body.scrollLeft)
menuid.style.left=document.body.clientWidth+document.body.scrollLeft-m1menuitemwidth;
menuid.style.visibility='visible';
}
function m1menu_over(menuid,x){
toel = getReal(window.event.toElement, "className", "coolButton");
fromel = getReal(window.event.fromElement, "className", "coolButton");
if (toel == fromel) return;
if(x==0||x==4||x==5||x==6){
  m1isShow = false;
  m1allhide();
  m1toout(eval("m1Menu"+x));
}else{

  m1allhide();
  m1toin(eval("m1Menu"+x));
  m1menushow(menuid,eval("m1Menu"+x));

}
clearTimeout(m1popTimer);
}
function m1menu_out(x){
toel = getReal(window.event.toElement, "className", "coolButton");
fromel = getReal(window.event.fromElement, "className", "coolButton");
if (toel == fromel) return;
if (m1isShow){
m1toin(eval("m1Menu"+x));
}else{
m1nochange(eval("m1Menu"+x));
}
m1popOut()
}
function m1menu_down(menuid,x){
  if(m1isShow){
  m1menuhide(menuid);
  m1toout(eval("m1Menu"+x));
  }
  else{
  m1toin(eval("m1Menu"+x));
  m1menushow(menuid,eval("m1Menu"+x));
  m1isdown=true;
  }
}
function m1menu_up(){
  m1isdown=false;
}
function m1menuitem_over(menuid,item,x,j,i){
toel = getReal(window.event.toElement, "className", "coolButton");
fromel = getReal(window.event.fromElement, "className", "coolButton");
if (toel == fromel) return;
srcel = getReal(window.event.srcElement, "className", "coolButton");
        for(nummenu=1;nummenu<=m1numberofsub;nummenu++){  
        	var thesub=document.all['m1submenudiv'+nummenu] 
        	if(!(menuid==thesub||menuid.style.tag>=thesub.style.tag)){
        	m1submenuhide(thesub);
        	m1nochange(document.all['m1p'+nummenu]);
        	document.all["m1item"+nummenu].style.color=m1fontcolor;
        	}
        }
if(item)document.all["m1item"+item].style.color=m1menuovercolor;
if(m1isdown||item){
	m1toin(srcel);
}
else{
	m1toout(srcel);
}
if(x==-1)m1thestatus=eval("m1sub"+j).items[i].statustxt;
if(j==-1)m1thestatus=m1menus[x].items[i].statustxt;
if(m1thestatus!=""){
	m1usestatus=true;
	window.status=m1thestatus;
}
clearTimeout(m1popTimer);
}
function m1menuitem_out(hassub){
toel = getReal(window.event.toElement, "className", "coolButton");
fromel = getReal(window.event.fromElement, "className", "coolButton");
if (toel == fromel) return;
srcel = getReal(window.event.srcElement, "className", "coolButton");
if(!hassub)m1nochange(srcel);
if(m1usestatus)window.status="";
m1popOut()
}
function m1menuitem_down(){
srcel = getReal(window.event.srcElement, "className", "coolButton");
m1toin(srcel)
m1isdown=true;
}
function m1menuitem_up(){
srcel = getReal(window.event.srcElement, "className", "coolButton");
m1toout(srcel)
m1isdown=false;
}
function m1exec3(j,i){
var cmd;
if(eval("m1sub"+j).items[i].target=="blank"){
  cmd = "window.open('"+eval("m1sub"+j).items[i].command+"')";
}else{
  cmd = eval("m1sub"+j).items[i].target+".location=\""+eval("m1sub"+j).items[i].command+"\"";
}
eval(cmd);
}
function m1exec2(x){
var cmd;
if(m1menus[x].target=="blank"){
  cmd = "window.open('"+m1menus[x].command+"')";
}else{
  cmd = m1menus[x].target+".location=\""+m1menus[x].command+"\"";
}
eval(cmd);
}
function m1exec(x,i){
var cmd;
if(m1menus[x].items[i].target=="blank"){
  cmd = "window.open('"+m1menus[x].items[i].command+"')";
}else{
  cmd = m1menus[x].items[i].target+".location=\""+m1menus[x].items[i].command+"\"";
}
eval(cmd);
}
function m1body_click(){
mbody_click();
if (m1isShow){
	srcel = getReal(window.event.srcElement, "className", "coolButton");
	for(var x=0;x<=m1menus.length;x++){
		if(srcel.id=="m1Menu"+x)
		return;
	}
	for(x=1;x<=m1numberofsub;x++){
		if(srcel.id=="m1p"+x)
		return;
	}
	m1allhide();
}
}
document.onclick=m1body_click;

function m1writetodocument(){
      var m1wb=1;
                     var stringx='<div id="m1posflag" style="position:absolute;"></div><table background="menu_bg1.gif" id=m1menutable border=0 cellpadding=3 cellspacing=2 width='+m1menuwidth+' height='+m1menuheight+' bgcolor='+m1menucolor+
                     ' onselectstart="event.returnValue=false"'+
                     ' style="cursor:'+m1cursor+';'+m1fonts+
                     ' border-left: 0px solid '+m1menuoutbordercolor+';'+
                     ' border-right: 0px solid '+m1menuinbordercolor+'; '+
                     'border-top: 0px solid '+m1menuoutbordercolor+'; '+
                     'border-bottom: 0px solid '+m1menuinbordercolor+'; padding:0px"><tr>'
                     for(var x=0;x<m1menus.length;x++){
                     	var thismenu=m1menus[x];
                     	var imgsize="";
                     	if(thismenu.sizex!="0"||thismenu.sizey!="0")imgsize=" width="+thismenu.sizex+" height="+thismenu.sizey;
                     	var ifspace="";
                     	if(thismenu.caption!="")ifspace="&nbsp;";
                     	stringx += "<td nowrap class=coolButton id=m1Menu"+x+" style='border: "+m1itemedge+"px solid "+m1menucolor+
                     	"' width="+m1menuunitwidth+"px onmouseover=m1menu_over(m1menudiv"+x+
                     	","+x+") onmouseout=m1menu_out("+x+
                     	") onmousedown=m1menu_down(m1menudiv"+x+","+x+")";
                     	      if(thismenu.command!=""){
                     	          stringx += " onmouseup=m1menu_up();m1exec2("+x+");";
                     	      }else{
                     	      	  stringx += " onmouseup=m1menu_up()";
                     	      }
                     	      if(thismenu.pos=="0"){
                     	          stringx += " align=center><img align=absmiddle src='"+thismenu.img+"'"+imgsize+">"+ifspace+thismenu.caption+"</td>";	
                     	      }else if(thismenu.pos=="1"){
                     	          stringx += " align=center>"+thismenu.caption+ifspace+"<img align=absmiddle src='"+thismenu.img+"'"+imgsize+"></td>";	
                     	      }else if(thismenu.pos=="2"){
                     	          stringx += " align=center background='"+thismenu.img+"'>&nbsp;"+thismenu.caption+"&nbsp;</td>";	
                     	      }else{
                     	          stringx += " align=center>&nbsp;"+thismenu.caption+"&nbsp;</td>";
                     	      }
                     	stringx += "";
                     }
                     stringx+="<td width=*>&nbsp;</td></tr></table>";
                     
                     
                     for(var x=0;x<m1menus.length;x++){
                     	thismenu=m1menus[x];
                        if(x==0||x==4||x==5||x==6){
                        stringx+='<div id=m1menudiv'+x+' style="visiable:none"></div>';
                        }else{
                        stringx+='<div id=m1menudiv'+x+
                        ' style="cursor:'+m1cursor+';position:absolute;'+
                        'width:'+m1menuitemwidth+'px; z-index:'+(x+100);
                        if(m1menuinbordercolor!=m1menuoutbordercolor&&m1subedge=="0"){
                        stringx+=';border-left: 1px solid '+m1midoutcolor+
                        ';border-top: 1px solid '+m1midoutcolor;}
                        stringx+=';border-right: 1px solid '+m1menuinbordercolor+
                        ';border-bottom: 1px solid '+m1menuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
                     	'<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
                     	'style="'+m1fonts+' border-left: 1px solid '+m1menuoutbordercolor;
                     	if(m1menuinbordercolor!=m1menuoutbordercolor&&m1subedge=="0"){
                     	stringx+=';border-right: 1px solid '+m1midincolor+
                     	';border-bottom: 1px solid '+m1midincolor;}
                     	stringx+=';border-top: 1px solid '+m1menuoutbordercolor+
                     	';padding: 4px" bgcolor='+m1menucolor+'>\n'
                     	for(var i=0;i<thismenu.items.length;i++){
                     		var thismenuitem=thismenu.items[i];
                     		var imgsize="";
                     	        if(thismenuitem.sizex!="0"||thismenuitem.sizey!="0")imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey;
                     	        var ifspace="";
                     	        if(thismenu.caption!="")ifspace="&nbsp;";
                     		if(thismenuitem.hasc!=null){
                     		stringx += "<tr><td id=m1p"+thismenuitem.hasc+" class=coolButton style='border: "+m1itemedge+"px solid "+m1menucolor+
                     		"' width=100% onmouseout=m1menuitem_out(true) onmouseover=\"m1menuitem_over(m1menudiv"+x+
                     		",'"+thismenuitem.hasc+"',"+x+",-1,"+i+");m1showsubmenu(m1submenudiv"+thismenuitem.hasc+",m1p"+thismenuitem.hasc+",m1menudiv"+x+");\""+
                     		"><table id=m1item"+thismenuitem.hasc+" cellspacing='0' cellpadding='0' border='0' width='100%' style='"+m1fonts+"'><tr><td ";
                     		  if(thismenuitem.pos=="0"){
                     	            stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td><td";	
                     	          }else if(thismenuitem.pos=="1"){
                     	            stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td><td";
                     	          }else if(thismenuitem.pos=="2"){
                     	            stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td><td background='"+thismenuitem.img+"'";	
                     	          }else{
                     	            stringx += ">"+thismenuitem.caption+"</td><td";
                     	          }
                     		  stringx += " align=right width='1'><font face='Webdings' style='font-size: 6pt'>4</font></td></tr></table></td></tr>\n";                     		
                     		}else if(!thismenuitem.isline){
                     		stringx += "<tr><td class=coolButton style='border: "+m1itemedge+"px solid "+m1menucolor+
                     		"' width=100% height=15px onmouseover=\"m1menuitem_over(m1menudiv"+x+
                     		",false,"+x+",-1,"+i+");\" onmouseout=m1menuitem_out() onmousedown=m1menuitem_down() onmouseup=";
 				stringx += "m1menuitem_up();m1exec("+x+","+i+"); ";
 				  if(thismenuitem.pos=="0"){
                     	            stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";	
                     	          }else if(thismenuitem.pos=="1"){
                     	            stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td></tr>";	
                     	          }else if(thismenuitem.pos=="2"){
                     	            stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td></tr>";	
                     	          }else{
                     	            stringx += ">"+thismenuitem.caption+"</td></tr>";
                     	          }
 				}else{
                     		stringx+='<tr><td height="1" background="hr.gif" onmousemove="clearTimeout(mpopTimer);"><img height="1" width="1" src="none.gif" border="0"></td></tr>\n';
                     		}
                     	}stringx+='</table>\n</div>'
                     	}                     	
                }
                
for(var j=1;j<=m1numberofsub;j++){     
thisitem=eval("m1sub"+j);
stringx+='<div id=m1submenudiv'+j+
                        ' style="tag:'+thisitem.level+';cursor:'+m1cursor+';position:absolute;'+
                        'width:'+m1menuitemwidth+'px; z-index:'+(j+200);
                        if(m1menuinbordercolor!=m1menuoutbordercolor&&m1subedge=="0"){
                        stringx+=';border-left: 1px solid '+m1midoutcolor+
                        ';border-top: 1px solid '+m1midoutcolor;}
                        stringx+=';border-right: 1px solid '+m1menuinbordercolor+
                        ';border-bottom: 1px solid '+m1menuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
                     	'<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
                     	'style="'+m1fonts+' border-left: 1px solid '+m1menuoutbordercolor;
                     	if(m1menuinbordercolor!=m1menuoutbordercolor&&m1subedge=="0"){
                     	stringx+=';border-right: 1px solid '+m1midincolor+
                     	';border-bottom: 1px solid '+m1midincolor;}
                     	stringx+=';border-top: 1px solid '+m1menuoutbordercolor+
                     	';padding: 4px" bgcolor='+m1menucolor+'>\n'
                     	for(var i=0;i<thisitem.items.length;i++){
                     		var thismenuitem=thisitem.items[i];
                     		var imgsize="";
                     	        if(thismenuitem.sizex!="0"||thismenuitem.sizey!="0")imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey;
                     	        var ifspace="";
                     	        if(thismenu.caption!="")ifspace="&nbsp;";
                     		if(thismenuitem.hasc!=null){
                     		stringx += "<tr><td id=m1p"+thismenuitem.hasc+" class=coolButton style='border: "+m1itemedge+"px solid "+m1menucolor+
                     		"' width=100% onmouseout=m1menuitem_out(true) onmouseover=\"m1menuitem_over(m1submenudiv"+j+
                     		",'"+thismenuitem.hasc+"',-1,"+j+","+i+");m1showsubmenu(m1submenudiv"+thismenuitem.hasc+",m1p"+thismenuitem.hasc+",m1submenudiv"+j+");\""+
                     		"><table id=m1item"+thismenuitem.hasc+" cellspacing='0' cellpadding='0' border='0' width='100%' style='"+m1fonts+"'><tr><td ";
                     		  if(thismenuitem.pos=="0"){
                     	            stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td><td";	
                     	          }else if(thismenuitem.pos=="1"){
                     	            stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td><td";
                     	          }else if(thismenuitem.pos=="2"){
                     	            stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td><td background='"+thismenuitem.img+"'";	
                     	          }else{
                     	            stringx += ">"+thismenuitem.caption+"</td><td";
                     	          }
                     		  stringx += " align=right width='1'><font face='Webdings' style='font-size: 6pt'>4</font></td></tr></table></td></tr>\n";                     		
                     		}else if(!thismenuitem.isline){
                     		stringx += "<tr><td class=coolButton style='border: "+m1itemedge+"px solid "+m1menucolor+
                     		"' width=100% height=15px onmouseover=\"m1menuitem_over(m1submenudiv"+j+
                     		",false,-1,"+j+","+i+");\" onmouseout=m1menuitem_out() onmousedown=m1menuitem_down() onmouseup=";
                     		stringx += "m1menuitem_up();m1exec3("+j+","+i+"); ";
 				if(thismenuitem.pos=="0"){
                     	            stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";	
                     	          }else if(thismenuitem.pos=="1"){
                     	            stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td></tr>";	
                     	          }else if(thismenuitem.pos=="2"){
                     	            stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td></tr>";	
                     	          }else{
                     	            stringx += ">"+thismenuitem.caption+"</td></tr>";
                     	          }
                     	        }else{
                     		stringx+='<tr><td height="1" background="hr.gif" onmousemove="clearTimeout(mpopTimer);"><img height="1" width="1" src="none.gif" border="0"></td></tr>\n';
                     		}
                     	}
stringx+='</table>\n</div>'
}
       document.write("<div align='center'>"+stringx+"</div>");
}


m1pmenu1=new m1Menu('Home','index.htm','self','','','','');
m1pmenu2=new m1Menu('About&nbsp;Us','profile.htm','self','','','','');
m1pmenu2.addItem(new m1MenuItem('Company&nbsp;Profile','profile.htm#1','self',false,'',null,'','','',''));
m1pmenu2.addItem(new m1MenuItem('Organization&nbsp;Chart','profile.htm#2','self',false,'',null,'','','',''));
m1pmenu3=new m1Menu('Service','service.htm','self','','','','');
m1pmenu3.addItem(new m1MenuItem('Web&nbsp;Design','service.htm','self',false,'',null,'','','',''));
m1pmenu3.addItem(new m1MenuItem('2-D&nbsp;Design','service2.htm','self',false,'',null,'','','',''));
m1pmenu3.addItem(new m1MenuItem('Mutli-media/CD','service3.htm','self',false,'',null,'','','',''));
m1pmenu4=new m1Menu('Reference&nbsp;Cases','case1.asp','self','','','','');
m1sub1=new m1MenuItem('Web&nbsp;Design','','self',false,'','1','','','','');
m1sub1.addsubItem(new m1MenuItem('Hotels','case1.asp?cat_id=29','self',false,'',null,'','','',''));
m1sub1.addsubItem(new m1MenuItem('B2B','case1.asp?cat_id=31','self',false,'',null,'','','',''));
m1sub1.addsubItem(new m1MenuItem('Enterprises','case1.asp?cat_id=32','self',false,'',null,'','','',''));
m1sub1.addsubItem(new m1MenuItem('Others','case1.asp?cat_id=55','self',false,'',null,'','','',''));
m1pmenu4.addItem(m1sub1);
m1pmenu4.addItem(new m1MenuItem('2-D&nbsp;Design','case2.asp','self',false,'',null,'','','',''));
m1pmenu4.addItem(new m1MenuItem('Mutli-media/CD','case3.asp','self',false,'',null,'','','',''));
m1pmenu4.addItem(new m1MenuItem('Special&nbsp;Effects','s01.htm','self',false,'',null,'','','',''));
m1pmenu4.addItem(new m1MenuItem('Teaching&nbsp;Materials','case5.asp','self',false,'',null,'','','',''));
m1pmenu5=new m1Menu('Online&nbsp;Order','order.htm','self','','','','');
m1pmenu6=new m1Menu('Recruitment','recruit.htm','self','','','','');
m1pmenu7=new m1Menu('Contact&nbsp;Us','contact.htm','self','','','','');

m1writetodocument();


