function showcode(strValue){	var objLabel = document.getElementById("lblMessage");	if(objLabel.childNodes.length < 1)	{		var objNodeValue = document.createTextNode(strValue);		objLabel.appendChild(objNodeValue);	}	else	{		objLabel.childNodes[0].nodeValue = strValue;	}}