function KText(htmlLinkedObj) {


htmlLinkedObj.innerHTML="";


this.setT=function(val){
htmlLinkedObj.innerHTML=val;
}

this.getT=function(){
return htmlLinkedObj.innerHTML;
}
/*
this.addT=function(val){
 htmlLinkedObj.innerHTML= htmlLinkedObj.innerHTML+val;
}*/


}
