function styleSwitch(id)
{
	strStatus = document.getElementById(id).style.display;

	if(strStatus == 'none')
	{
		document.getElementById(id).style.display = '';
	}
	else
	{
		document.getElementById(id).style.display = 'none';
	}
}
