/**
 * @author dondon
 */
function revealModal(divID)
{
    window.onscroll = function () { document.getElementById(divID).style.top = document.body.scrollTop; };
    document.getElementById(divID).style.display = "block";
    document.getElementById(divID).style.top = document.body.scrollTop;
}

function hideModal(divID)
{
    document.getElementById(divID).style.display = "none";
}

function showModalSubmit() {	
	var modalHtml = "<div class=\"modalBackground\">";
	modalHtml += "</div><div class=\"modalContainer\"><div class=\"progressmodal\">";
	modalHtml += "<div class=\"modalBody\">";
	modalHtml += "<div id=\"progressMessage\"><br />Validating user information...</div>";
	modalHtml += "<br />";
	modalHtml += "<div><img src=\"./images/ajax-loader.gif\" width=\"296px\"></img></div>";
	modalHtml += "</div>";
	modalHtml += "</div></div>";
	document.getElementById('modalProgress').innerHTML = modalHtml;
	revealModal('modalProgress');
}
