/************************************
目的和功能:拒绝恶意嵌套
************************************/
function notInframe(){
	if(top.location.href.toLowerCase().indexOf("http://www.bizcspia.com")==-1){top.location.href="http://www.bizcspia.com"}
}
/************************************
目的和功能:设置状态栏
************************************/
function set21Status(){window.status='http://www.bizcspia.com';}

//notInframe();set21Status();
/************************************
目的和功能:轮换广告
************************************/
function changeAD(ID,n,delay){	
	var obj=document.getElementsByName(ID);
	var olen=obj.length;
	if(n>=olen||n<=0){
		obj[0].style.display='';
		obj[olen-1].style.display='none';
		n=0;
	}
	else{
		obj[n].style.display='';
		obj[n-1].style.display='none';
	}
	n++;
	setTimeout("changeAD('"+ID+"',"+n+","+delay+")",delay);
}
