var menu=new Array("Our Company","Main Products","Other Products","Global Net","Our Service","Contact Us")
var link=new Array("pages_en/about.asp","product_en/?kindid=11","product_en/?kindid=12","pages_en/global.asp","pages_en/service.asp","pages_en/contact.asp")
l=link.length
url=location.href

function draw_menu(){
	document.write("<div style='position:absolute;width:0px;height:0px;left:128px;top:82px'>")
	document.write("<table width='146' border='0' cellspacing='0' cellpadding='0'>")
	document.write("<tr><td height='62'></td></tr>")
	for (i=0;i<l;i++){
		document.write("<tr><td background='../images/menu_0.gif' height='29' style='padding-left:30px;padding-bottom:6px'>")
		document.write("<a href='../"+link[i]+"' class='menu'>"+menu[i]+"</a>")
		document.write("</td></tr>")
		document.write("<tr><td height='12'></td></tr>")
	}
	if(url.search("prolist.asp")!=-1){
		document.write("<tr><td style='padding-left:30px'><form action='../product_en/search.asp' method='post' name='form1'>")
		document.write("<input type='text' name='proname' class='box' size=11 value='Search' onfocus='this.value=\"\"'> <input type='image' src='../images/search.gif' align='absmiddle'>")
		document.write("</form></td></tr>")
	}
	document.write("</table>")
	document.write("</div>")
}
