function displayElement(pElmId) {
	var lElm = document.getElementById(pElmId);
	
	if (lElm.style.display == 'none')
		lElm.style.display = 'block';
	else
		lElm.style.display = 'none';
}

function reloadCaptcha() {
	var img = document.getElementById('cappic');
	img.src = '/lib/frmcaptcha.php?rld=' + Math.random();
	return false;
}
