	function cambiar(texto)
	{
		if(texto.value == 'Buscar' || texto.value == "")
		{
			texto.value = "";
		}
	}
	function regresar(texto)
	{
		if(texto.value == "")
		{
			texto.value = "Buscar";
		}
	}
	function overTD(td,color){td.bgColor=color;} 
	function outTD(td,color){td.style.cursor='default';td.bgColor=color;}
