var n;
var u = document.getElementById("briefInfoP");
var pHeight;
var initHeightP = 180;
u.sign = true;
$(document).ready(function () {
	alsp();
});
function alsp() {
	pHeight = parseInt(u.offsetHeight);
	u.style.height = "180px";
}
var AppPath
function showP(Url) {
    //var pHeight=parseInt(u.style.height);
    if (Url != undefined) {
        AppPath = Url
    }
	if (u.sign == false) {
		u.style.height = parseInt(u.style.height) - 10 + "px";
		if (parseInt(u.style.height) <= initHeightP) {
			u.style.height = initHeightP + "px";
			clearTimeout(n);
			$("#imgArrowP").attr("src", AppPath+"Images/nt_butt8.gif");
			u.sign = true;
			return;
		}
	} else {
		u.style.height = parseInt(u.style.height) + 10 + "px";
		if (parseInt(u.style.height) >= pHeight) {
			u.style.height = pHeight + "px";
			clearTimeout(n);
			$("#imgArrowP").attr("src", AppPath+"Images/nt_butt8_fan.gif");
			u.sign = false;
			return;
		}
	}
	s = setTimeout(showP, 5);
}