function ADSfull2(){
if (IS_FULL && Fsrc.length!=0 && FStartTime.length==FEndTime.length && FEndTime.length==Fsrc.length && Fsrc.length==Fhref.length && IS_FULL)
{
	for(fulli=0;fulli<Fsrc.length;fulli++){
		var ST=new Date(FStartTime[fulli]);
		var ET=new Date(FEndTime[fulli]);
		var NT=new Date();
		if((ST<=ET)&&(NT<ET)&&(NT>=ST)){
		var OBJ=document.getElementById("fullscreenad");
			if(OBJ!=null){
				self.scroll(0,0);
				is_ad=true;
				OBJ.style.display="block";
				fulls="<a href='"+Fhref[fulli]+"' target='_blank'><img src='"+Fsrc[fulli]+"' border='0' width='940' height='350'></a>";
				//OBJ.innerHTML=GdmFull(Fsrc[fulli],940,350,Fhref[fulli]);
				OBJ.innerHTML=fulls;
				setTimeout("GdmFull2_Close()",8000);
			}else{
				IS_FULL=0;
			}
		}
	}
	if(!is_ad)GdmFull2_Close("fullscreenad");
}else{
IS_FULL=0;
}
}

function GdmFull2(src,w,h,href){
var fulls="";
if(src.indexOf(".gif")!=-1||src.indexOf(".jpg")!=-1){
	fulls="<a href='"+href+"' target='_blank'><img src='"+src+"' border='0' width='"+w+"' height='"+h+"'></a>";
}
return fulls;
}
function GdmFull2_Close(){
	document.getElementById('fullscreenad').style.display='none';
	IS_FULL=0;
}