
var iScreenWidth = screen.width;   //得到当前屏幕分辨库的宽度
if (iScreenWidth > 800)
{
	var RightDriftAD_Type    = "image";     //右边浮动广告窗口的对象类型,类型为：image,swf
	var RightDriftAD_URL     = "/img/baoxian.gif";     //右边浮动广告窗口的对象路径
	var RightDriftAD_Link    = "/#/";     //右边浮动广告窗口的对象链接
	var RightDriftAD_Width   = "109";     //右边浮动广告窗口的对象宽度
	var RightDriftAD_Height  = "119";    //右边浮动广告窗口的对象高度
	var RightDriftAD_Right   = "0";     //右边浮动广告窗口的对象距离右边的距离
	
	
	document.write("<div id=\"RightDriftAD\" style=\"position:absolute;z-index:100;top:expression(offsetParent.scrollTop+100);width:" + RightDriftAD_Width + "px;height:" + RightDriftAD_Height + "px;right:" + RightDriftAD_Right + "px;\">")
	document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
	document.write("<tr>");
	document.write("<td bgcolor=\"\" style=\"text-align:right;padding-top:0px;padding-left:0px;\">");
	document.write("<a style=\"CURSOR:pointer\" onclick=\"javascript:document.getElementById('RightDriftAD').style.visibility='hidden';\" title=\"关闭广告\">");
	document.write("<img src=\"/Images/close.gif\" /></a></td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td>");
	if(RightDriftAD_Type.toLowerCase() != "flash")
	{
		document.write("<a href=\"" + RightDriftAD_Link + "\" target=\"_blank\">");
		document.write("<img src=\"" + RightDriftAD_URL + "\" width=\"" + RightDriftAD_Width + "\" height=\"" + RightDriftAD_Height + "\" border=\"0\"></a>");
	}
	else
	{
		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"" + RightDriftAD_Width + "\" height=\"" + RightDriftAD_Height + "\">");
		document.write("<param name=\"movie\" value=\"" + RightDriftAD_URL + "\" />");
		document.write("<param name=\"quality\" value=\"high\" />");
		document.write("<embed src=\"" + RightDriftAD_URL + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + RightDriftAD_Width + "\" height=\"" + RightDriftAD_Height + "\">");
		document.write("</embed></object>");
	}
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("</div>");
}