//Para escribir en el titular
var ns4 = (document.layers)? true:false;
var ie4 = (document.all)? true:false;
var dom = (document.getElementById)? true:false;

function Titulo(texto)
{
	texto='<table border="0"><tr><td class="gris10">'+texto+'</td></tr></table>'
	if (ns4)
	 LayerTitulo = document.layers["LayerTipo1"].document.write(texto);
	if (ie4)
	LayerTitulo =  document.all["LayerTipo1"].innerHTML = texto;
	if (dom)
	LayerTitulo = document.getElementById("LayerTipo1").innerHTML = texto;
}
