function createAnchorTxt(txt, append, h, click)	{		var a = document.createElement("a");		var href = document.createAttribute("href");		var onclick = document.createAttribute("onclick");								href.nodeValue = h;		onclick.nodeValue = "javascript:"+click;				a.setAttributeNode(href);		a.setAttributeNode(onclick);		var text =document.createTextNode(txt);		a.appendChild(text);					document.getElementById(append).appendChild(a);	}	
