/**********************************************                  TEXT TOGGLE***********************************************/function showText(evt) {    getText(evt);    //return false;}function getText(evt) {    var url = evt;        if (window.XMLHttpRequest) {        xhr = new XMLHttpRequest();    } else {        if (window.ActiveXObject) {            try {                xhr = new ActiveXObject("Microsoft.XMLHTTP");            } catch (e) { }        }    }        if (xhr) {        xhr.onreadystatechange = showContents;        xhr.open("GET",url,true);        xhr.send(null);    } else {        alert("Sorry, but we couldn't create an XMLHttpRequest");    }}function showContents() {    var txtObj = document.getElementById("content");    if (xhr.readyState == 4) {        txtObj.innerHTML = (xhr.status == 200) ? xhr.responseText : "There was a problem with the request" + xhr.status;    }} 

/**********************************************                  REVERSE TEXT***********************************************/
function ReverseContent(e) {if(e.length < 1) { return; }if(document.getElementById(e).style.display == "none") {     document.getElementById(e).style.display = "block";} else {     document.getElementById(e).style.display = "none";     }}

