function buscaProduto__Focus( obj )
{
	obj.value = "";
	obj.style.color = "#000";
}

function buscaProduto__Blur( obj )
{
	if ( obj.value == "" )
	{
		obj.style.color = "#BBB";
		obj.value = "digite aqui o nome do produto";
	}
}

function init_buscaProduto()
{
		document.getElementById( 'busca_produto' ).style.color = "#BBB";
		document.getElementById( 'busca_produto' ).value = "digite aqui o nome do produto";
}
