Hola te dejo un ejemplo..saludos!
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script language="JavaScript">
function muestra_oculta(id){
if (document.getElementById){
var el = document.getElementById(id);
el.style.display = (el.style.display == 'none') ? 'block' : 'none';
}
}
window.onload = function(){
muestra_oculta('contenido_a_mostrar');
}
</script>
</head>
<body>
<p><a style='cursor: pointer;' onClick="muestra_oculta('contenido_a_mostrar')" title="">boton</a></p>
<div id="contenido_a_mostrar">
<form action="" method="get">
<input name="" type="text">
<input name="" type="text">
<input name="Agregar usuario" type="button" value="Enviar">
</form>
</div>
</body>
</html>