
function pierdeFoco(caja,tipo)
{
	//var txtComment;
	//txtComment = document.getElementById('txtComentario');

	if(caja.value == '')
		caja.value='Agregue '+tipo+'...'
	
}

function obtieneFoco(caja,tipo)
{
	if(caja.value == 'Agregue '+tipo+'...')
		caja.value='';
}

