function loadIt()
{
	div="divLoadCont";
	if(document.getElementById(div).style.display == "none"){
		document.getElementById(div).style.display = "";
		document.getElementById(div).innerHTML="<br><br><p align='center' class='blk16'><img src='/display/includes/loader/ajax-loading.gif' /><br><br><b>Processing content.<br>Please Wait...</b></p>";
	}
}


function hideIt()
{
	div="divLoadCont";
	if(document.getElementById(div).style.display == ""){
		document.getElementById(div).style.display = "none";
		document.getElementById(div).innerHTML="";
	}
}