


function showDIV(id) {
	document.getElementById(id).style.visibility = 'visible';
    document.getElementById(id).style.display = 'block';
}



function hideDIV(id) {
    document.getElementById(id).style.visibility = 'hidden';
    document.getElementById(id).style.display = 'none';
}

