 function closeModalPopup(idShadow, idAlert) {
	 var shadow = document.getElementById(idShadow);
	 shadow.style.visibility = 'hidden';
	 
	 var modalPopup = document.getElementById(idAlert);
	 modalPopup.style.visibility = 'hidden';
 }

