// JavaScript Document
function _body_onunload()
{
	if( document.getElementById("loaderContainer") ){
		document.getElementById("loaderContainer").style.display = "";
	}
}
function _body_onload()
{
	if(document.getElementById("loaderContainer")){
		document.getElementById("loaderContainer").style.display = "none";
	}
}

if (window.addEventListener) {
	window.addEventListener('load', _body_onload, false);
	window.addEventListener('unload', _body_onunload, false);
} else if (window.attachEvent) {
	window.attachEvent('onload', _body_onload);
	window.attachEvent('onunload',_body_onunload);
}
