function surfto(form) {
	/**
	 *
	 * 此段代码最终实现跳转
	 *
	**/
	
	var myindex=form.dest.selectedIndex;
	location=form.dest.options[myindex].value;
}


function writeHeard(){
	var outString;
	outString=" ";
	outString+="<div id='header' style='height:95px;'>";
	outString+="<div class='dh11' style='height:95px;'>";
	outString+="<img src='../images/home_logo.gif'  height='90'>";
	outString+="</div>";
	outString+="<div class='dh2' style='height:95px'>";
	outString+="<FORM NAME='myform' style='line-height:1.5em; margin:0px; border:0px; padding:0px'>";
	outString+="<img src='../images/homebanner.gif' width='379' height='69'><BR />";
	outString+="<span style=' font-family:Arial, Helvetica, sans-serif; ";
	outString+=" font-size:12px;color:#FFFFFF; font-weight:bold;'>";
	outString+="Language</span>";
	outString+="<SELECT NAME='dest' onChange='surfto(this.form)' style='font-size:9px'>";
	outString+=" <OPTION SELECTED VALUE='http://www.everlight-solar.com'>  ";
	outString+=" <OPTION VALUE='http://www.everlight-solar.com/en/home.html'>English";
	outString+=" <OPTION VALUE='http://www.everlight-solar.com/cha/home.html'>中文";
	outString+="</SELECT>";
	outString+="<input type='button' value='OK'  style='font-size:9px' /></FORM></div></div>";

	document.write(outString);
}

writeHeard();