<!--
function ChangeTxt(fr, to) {
   //var newtxt = document.form1.newtitle.value;
   var txt = document.getElementById(fr+"txt");
   var newtxt = document.getElementById(to);
   newtxt.firstChild.nodeValue=txt.firstChild.nodeValue;
   
//alert(fr+"txt "+txt.firstChild.nodeValue);   

	if(lstBox!="") {
		document.getElementById(lstBox).style.color=lstBoxClr;
		document.getElementById(lstBox).style.background="";
   }
   lstBox=fr;
   lstBoxClr=document.getElementById(fr).style.color;
   document.getElementById(fr).style.color="orange";
   document.getElementById(fr).style.background="blue";

//alert("value is "+txt.firstChild.nodeValue);
}	//function ChangeTxt(fr, to)

function DisplayTxt(fr, to,cur) {
   //var newtxt = document.form1.newtitle.value;
   var org = document.getElementById(fr);
   var des = document.getElementById(to);
   des.innerHTML=org.innerHTML;
   document.getElementById(fr+"Menu").className =cur;
   return
   newtxt.firstChild.nodeValue=txt.firstChild.nodeValue;
   
alert(fr+"txt "+txt.firstChild.nodeValue);   

	if(lstBox!="") {
		document.getElementById(lstBox).style.color=lstBoxClr;
		document.getElementById(lstBox).style.background="";
   }
   lstBox=fr;
   lstBoxClr=document.getElementById(fr).style.color;
   document.getElementById(fr).style.color="orange";
   document.getElementById(fr).style.background="blue";

//alert("value is "+txt.firstChild.nodeValue);
}	//function ChangeTxt(fr, to)

function rmBck(fr, to, mnu1,cur){
	var i;

	for (i in mnu){
//alert(mnu[i]+" te[["+to+"]st: "+fr);
		document.getElementById(mnu[i]+"Menu").className="normOrg";
	}	//for (obj in mnu)
	DisplayTxt(fr, to,cur);
}	//function rmBck(fr, to, mnu,cur)

-->
