function showModalInfoWindow()
{
	var ele = document.getElementById("divAjaxStatus");
    ele.style.visibility = 'visible';
}

function hideModalInfoWindow()
{
    document.getElementById('divAjaxStatus').style.visibility = 'hidden';
}

