var n_pages = 3;
function revealDiv(n)
{
for (var count = 1; count <= n_pages; count++) {
			     document.getElementById("sform"+count).style.display = 'none';
			     }
			     document.getElementById("sform"+n).style.display = 'block';
}
