function OpenLoading(id)
{
	document.getElementById(id).style.display="block";	
	document.all.divModal.style.width = document.body.scrollWidth;
   	document.all.divModal.style.height = document.body.scrollHeight+20;			
}
function CloseLoading(id)
{
	document.getElementById(id).style.display="none";
	document.all.divModal.style.width = "0px";
    document.all.divModal.style.height = "0px";
}