function toggle(theid,obj)
{
    if(document.getElementById(theid).style.display == 'none'){
      document.getElementById(theid).style.display = 'block';
	  obj.className='hidenotice';
    }else{
      document.getElementById(theid).style.display = 'none';
	  obj.className='viewnotice';
    }
}
