function MoreText(tid1,tid2) {
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "";
}

function LessText(tid1,tid2) {
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "";
}