// JavaScript Document
function undrline(txt) {
  txt.style.cursor = "hand";
  txt.style.color = "red";
  txt.style.textDecoration = "underline";
  window.status = txt.title;
}
function noline(txt) {
  txt.style.textDecoration = "none";
  txt.style.color = "black";
  window.status = "";
}
function textdown(txt) {
  txt.style.textDecoration = "none";
  txt.style.color = "green";
}
function txtover(txt,txtclr) {
  txt.style.cursor = "pointer";
  txt.style.color = txtclr;
  txt.style.textDecoration = "underline";
  window.status = txt.title;
}
function txtout(txt,txtclr) {
  txt.style.textDecoration = "underline";
  txt.style.color = txtclr;
  window.status = "";
}
function txtoutnoline(txt, txtclr) {
    txt.style.textDecoration = "none";
    txt.style.color = txtclr;
    window.status = "";
}
function txtdown(txt, txtclr) {
  txt.style.textDecoration = "none";
  txt.style.color = txtclr;
}
function Pointer(source) {
  source.style.cursor = 'hand';
}

