/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Roderick W. Divilbiss :: http://www.rodsdot.com/
Licensed under: Creative Commons License */

function showForm() {
  oDiv = document.getElementById('theFormDiv');
  oDiv.style.display='block';
  return false;
}

function hideForm() {
  oDiv = document.getElementById('theFormDiv');
  oDiv.style.display='none';
  return false;
}