/*
 * web-cv project - 10/2005
 * Grégory Thiell <gregory@thiell.com>
 *
 * JavaScript functions of the project
 */

function show(id)
  {
  document.getElementById(id).style.display = "block";
  }
function hide(id)
  {
  document.getElementById(id).style.display = "none";
  }

