function checkAll()
{
	for(i=0; i<document.options.elements.length; i++)
	{
		if(document.options.elements[i].type=="checkbox")
		{
			document.options.elements[i].checked=true;
		}
	}
}
function uncheckAll()
{
	for(i=0; i<document.options.elements.length; i++)
	{
		if(document.options.elements[i].type=="checkbox")
		{
			document.options.elements[i].checked=false;
		}
	}
}
