function tfocus( o )
{
	if( o.value == o.title )
	{
		o.value	= '';
	}
}

function tblur( o )
{
	if( '' == o.value )
	{
		o.value	= o.title;
	}
}