<!--DropDown_Img-->
function ShowDropDownAd(divId, imgId , imgPathUrl ,url, height , width)
{
	if (url.length <= 0)
	{
		document.write("<div id='" + divId + "' style='width:980px; height:50px; margin:0 auto; overflow:hidden; border:0px solid #ccc; position:relative;'>" + 
					"<div style='position:absolute; bottom:0; left:0;'>" + 
						"<img id='+ imgId +' src='"+ imgPathUrl +"' style='width:"+ width +"px; height:"+ height +"px; display:block; border:0;' />" + 
					"</div>" + 
				"</div>");
	}
	else
	{
		document.write("<div id='" + divId + "' style='width:980px; height:50px; margin:0 auto; overflow:hidden; border:1px solid #ccc; position:relative;'>" + 
						"<div style='position:absolute; bottom:0; left:0;'>" + 
							"<a href='"+ url +"' target='_blank'><img id='+ imgId +' src='"+ imgPathUrl +"' style='width:"+ width +"px; height:"+ height +"px; display:block; border:0;' /></a>" + 
						"</div>" + 
					"</div>");
	}
	
	setTimeout("DropDownAdvertShow('"+ divId +"', "+ height +")", 800);
}

function DropDownAdvertShow(divId, height){
	//var obj = $(divId);
	var a=document.getElementById(divId);
	var b=a.offsetHeight;
	if (a){
		//alert("ff");
		if ((b-2) < height){
			a.style.height = (b-2) + 10 + "px";
			setTimeout("DropDownAdvertShow('"+ divId +"', "+ height +")", 10);
		}else{
			setTimeout("DropDownAdvertHide('"+ divId +"')", 8000);
		}
	}else{
		setTimeout("DropDownAdvertShow('"+ divId +"', "+ height +")", 100);
	}
}
function DropDownAdvertHide(divId){
	//var obj = $(divId);
	var a=document.getElementById(divId);
	var b=a.offsetHeight;
	if (a){
		if ((b-2) > 50){
			a.style.height = (b-2) - 10 + "px";
			setTimeout("DropDownAdvertHide('"+ divId +"')", 10);
		}
	}
}


<!--End-->

