// JavaScript Document

// Toggle switch mixed with CSS
	function toggleColor(objElement)
	{
	  if (objElement.className=='normal')
		objElement.className='focus';
	  else
		objElement.className='normal';
	}