var div_id = Math.round(Math.random()*1000);
	
var div_ob = document.createElement("DIV");
document.write("<div id='doc_title_"+div_id+"'><b>"+txt+"</b><br />&nbsp;</div>");
pnt = document.getElementById('doc_title_'+div_id).parentNode;

while(pnt.tagName != "TABLE"){
	pnt = pnt.parentNode;
}
pntpnt = pnt.parentNode;
pntpnt.insertBefore(document.getElementById('doc_title_'+div_id), pnt);