var n;
var div = document.getElementById("briefInfoDiv");
var divHeight;
var initHeightdiv = 70;
div.sign = true;
$(document).ready(function () {
	alsdiv();
});
function alsdiv() {
	divHeight = parseInt(div.offsetHeight);
	div.style.height = "70px";
}
var AppPath
function showDiv(Url) {
    //var divHeight=parseInt(div.style.height);
    if (Url != undefined) {
        AppPath = Url
    }
	if (div.sign == false) {
		div.style.height = parseInt(div.style.height) - 10 + "px";
		if (parseInt(div.style.height) <= initHeightdiv) {
			div.style.height = initHeightdiv + "px";
			clearTimeout(n);
			$("#imgArrowDiv").attr("src", AppPath+"Images/nt_butt7.gif");
			div.sign = true;
			return;
		}
	} else {
		div.style.height = parseInt(div.style.height) + 10 + "px";
		if (parseInt(div.style.height) >= divHeight) {
			div.style.height = divHeight + "px";
			clearTimeout(n);
			$("#imgArrowDiv").attr("src", AppPath+"Images/nt_butt7_fan.gif");
			div.sign = false;
			return;
		}
	}
	s = setTimeout(showDiv, 5);
}