/*
自动判断是否显示并且不随窗口滚动的网页左右广告条
参数说明：
outerWidth:窗口临界宽度，超过此宽度时显示广告条，否则不显示
innerWidth:页面内容宽度
o_top:广告条上边界距离窗口上边界的距离
o_width:广告条宽度
o_id:广告条id
place:广告条位置，left表示左边 right表示右边
注意：若同时设置多个广告条时，各处outerWidth、innerWidth参数必须保持一致
*/
function move(outerWidth,innerWidth,o_top,o_width,o_id,place){
	if(document.body.clientWidth < outerWidth){
		document.all(o_id).style.display = "none";
	}
	else{
		document.all(o_id).style.display = "block";
		document.all(o_id).style.top = document.body.scrollTop + o_top;
		if(place=="left"){
			document.all(o_id).style.left = document.body.clientWidth/2 - o_width/2 -innerWidth/4 - outerWidth/4;
		}
		else{
			document.all(o_id).style.left = document.body.clientWidth/2 - o_width/2 +  innerWidth/4 + outerWidth/4;
		}
	}
	setTimeout("move("+outerWidth+","+innerWidth+","+o_top+","+o_width+",'"+o_id+"','"+place+"');",25);
}