var width = screen.width;

document.getElementById("charge").style.display = "block";
document.getElementById("charge").style.top = "0";
document.getElementById("charge").style.left = ((width/2) - (302/2)) - 500;

var i= '20';
function finchargementpage() {
if(i > '0')
{
i-=2;
	document.getElementById("charge").style.height = i+"px";
	TimeClose = setTimeout("finchargementpage()",1); 
}
else {
	if(TimeClose != undefined) clearTimeout(TimeClose)
	document.getElementById("charge").style.display = "none";
}
}