function form_reset()
{
	var _form=document.getElementById('assign_claim_form');
	_form.onreset = function()
	{
		var _chekb=this.getElementsByTagName('input');
		for(i=0;i<_chekb.length;i++)
		{
			if(_chekb[i].type=='checkbox')
			{
				_chekb[i].cuatum.setState(_chekb[i].cuatum.start_data);				
			}
		}
		return true;
	}
	
}





if (window.addEventListener)
     window.addEventListener("load", form_reset, false);
else if (window.attachEvent)
     window.attachEvent("onload", form_reset);