<!--
if (document.all||document.layers) {
	makeStatic();
	}

var text=new Array();
var thelink=new Array();
text[0] = "Home";
text[1] = "Publication";
text[2] = "Dissertation";
text[3] = "Presentation";
text[4] = "Patent";
text[5] = "Contact us";
text[6] = "Album";

thelink[0] = "http://fruit.dicp.ac.cn";
thelink[1] = "http://fruit.dicp.ac.cn/publication/public2006.php";
thelink[2] = "http://fruit.dicp.ac.cn/fruit here/maindoc/dissertationsE1.htm";
thelink[3] = "http://fruit.dicp.ac.cn/fruit here/maindoc/presentation1.php";
thelink[4] = "http://fruit.dicp.ac.cn/publication/patent1.php";
thelink[5] = "http://fruit.dicp.ac.cn/fruit here/maindoc/address.htm";
thelink[6] = "http://fruit.dicp.ac.cn/album/album.htm";

var linktarget=''

function navigate(which)
	{
	if (linktarget=='')
		window.location=thelink[which]
	else if (linktarget=='new')
		window.open(thelink[which])
else{
	temp_var=eval("window.parent."+linktarget)
	temp_var.location=thelink[which]
	}
	}

for (i=0;i<=text.length-1;i++)
if (document.all) 
{document.write('<tr><td height=20 bgcolor=white onclick="navigate('+i+')" onmouseover="className=\'hl\'" onmouseout="className=\'n\'"><font size=2 face=Arial> '+text[i]+'</font></td></tr>')}
else {document.write('<tr><td bgcolor="white"><ilayer><layer height="18" onmouseover="this.bgColor=\'yellow\'" onmouseout="this.bgColor=\'white\'" width=131><font size=2 face=Arial> <a href="'+thelink[i]+'" target="'+linktarget+'" id="nounderline">'+text[i]+'</a></font></layer></ilayer></td></tr>')}
//-->