/**
 * COMMON.JS
 * 
 * A collection of commonly-used functions
 * across the site.
 */

function showMe(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = 'block';
	}
	else
	{
		alert('ERROR: Element ' + id + 'not found');
	}
}

function hideMe(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = 'none';
	}
	else
	{
		alert('ERROR: Element ' + id + 'not found');
	}
}
