function OnMouseOver_(obj)
{
  obj.style.background='#CCCCCC';
}

function OnMouseOut_(obj, color)
{
  obj.style.background='#' + color;
}

function confirmDelete ( message, link )
{
	if ( confirm ( message ) )
	{
		document.location = link;
	}
}

function divchange ( status, did )
{	
	if ( document.getElementById ( did ).className == 'back_txt_td_p' || document.getElementById ( did ).className == 'back_txt_td' )
		document.getElementById ( did ).className='back_txt_td_s';
}
