// JavaScript Document
function clickCheckBox(thebox)
{
	if(typeof(thebox)=='string')thebox = document.getElementById(thebox);

	if(thebox.className=='checkbox1')
	{
		thebox.className='checkbox0';
		thebox.checked = false;
	}
	else
	{
		thebox.className='checkbox1';
		thebox.checked = true;
	}
	return false;
}
