/*

该文件用在每个栏目页面作为顶部Flash部分 通过参数变化进行更新。

*/
function getTopFlash(channelName)
{
	document.write("<table border='0' cellpadding='0' cellspacing='0' width='778'>");
	document.write("	<tr>");

	switch(channelName)
	{
		case "info":
			document.write("		<td background='../images/dfmInfoTopBG_blue.gif' height='20' width='100%'>");
			break;
		case "product":
			document.write("		<td background='../images/dfmProductTopBG.gif' height='20' width='100%'>");
			break;
		case "news":
			document.write("		<td background='../images/dfmNewsTopBG.gif' height='20' width='100%'>");
			break;
		case "sales":
			document.write("		<td background='../images/dfmSalesTopBG.gif' height='20' width='100%'>");
			break;
		case "service":
			document.write("		<td background='../images/dfmServiceTopBG.gif' height='20' width='100%'>");
			break;
		case "job":
			document.write("		<td background='../images/dfmJobTopBG.gif' height='20' width='100%'>");
			break;
	}
	document.write("			<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'");
	document.write("				width='259' height='20' id='LogoFlash' align='middle'>");
	document.write("				<param name='allowScriptAccess' value='sameDomain' />");
	document.write("				<param name='movie' value='../images/LogoFlash_en.swf' />");
	document.write("				<param name='quality' value='high' />");
	document.write("				<param name='wmode' value='transparent' />");
	document.write("				<param name='bgcolor' value='#ffffff' />");
	document.write("				<embed src='../images/LogoFlash_en.swf' quality='high' bgcolor='#ffffff' width='259' height='20'");
	document.write("					name='LogoFlash' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash'");
	document.write("					pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("			</object>");
	document.write("		</td>");
	document.write("	</tr>");
	document.write("</table>");
}

