// JavaScript Document
function lod(){
	var bh=document.body.scrollHeight;// 获得页面高度
	var al=document.getElementById("acenl");
	var ar=document.getElementById("acenr");
	var am=document.getElementById("acen").scrollHeight;//clientHeight;//div的实际高度
	al.style.height=am+'px';
	ar.style.height=am+'px';
}


//index menu
function proc(id){
	for(s=1;s<=2;s++){
		if(id==s){
			document.getElementById("proc_m_"+s).className='mtd2';
		}
		else{
			document.getElementById("proc_m_"+s).className='mtd1';
		}
	}
}


//Flash
function flash(src,w,h){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">');
document.write('<param name="movie" value="'+src+'"><param name="quality" value="high"><param name="menu" value="false">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="'+src+'" width="'+w+'" height="'+h+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent"></embed>');
document.write(' </object>');

}
