///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//                       Copyright (c) 2003-2006                             //
//                            Marc Peterson                                  //
//                     marc.s.peterson at gmail.com                          //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

function showSection(id)
{
	var section = document.getElementById(id);
	if ( section ) section.style.display='block';
}

function hideSection(id)
{
	var section = document.getElementById(id);
	if ( section ) section.style.display='none';
}
