function hideErrorPopupbox()
{
	// get objects
	objErrorPopup = document.getElementById('errorPopUp');

	// hide lightbox and overlay
	objErrorPopup.style.display = 'none';
	
	// disable keypress listener
	document.onkeypress = '';
}

