function elementhide(id) {
		document.getElementById(id).style.display = 'none';
}

function elementshow(id) {
		document.getElementById(id).style.display = 'block';
}

function elementfocus(id) {
        document.getElementById(id).focus();
}
	

