//无边框FLASH
function LoadFlash(url,wmode,width,Height)
{ 
document.write(
  '<embed src="' + url + '" wmode=' + wmode +
  ' quality="high" pluginspage=http://www.macromedia.com/go/getflashplayer type="application/x-shockwave-flash" width="' + width + 
  '" height="' + Height + '"></embed>');   
}
//图层切换
function changeLayer(LayerName,num,LayerId){
	for(i=1;i<=num;i++){
		var obj;
		obj = eval(LayerName + i);
		obj.style.display = "none";
		if(i == LayerId){obj.style.display = "";}
	}
}
//鼠标经过
function mouseoverImg(ID,Num){
	eval(ID).style.background = "url(Images/"+Num+"_.jpg) no-repeat 0 50%;"
}
//鼠标离开
function mouseoutImg(ID,Num,W){
	eval(ID).style.background = "url(Images/"+Num+".jpg) no-repeat 0 50%;"
}
