function toggle_display(inid)
{
	var inid_style = document.getElementById(inid).style;
	if (inid_style.display == 'none')
		inid_style.display = 'block'
	else
		inid_style.display = 'none';
}

function temp_unavail()
{
	alert('This page is temporarily unavailable.\n\nWe apologize for any inconvience that this may have caused.\n\nThank you and have a great day!');
}