window.defaultStatus = "www.tricon.ie";

function change_focus(xxx) {
   if(document.getElementById) {
      document.getElementById(xxx).style.color = "#000000";
      document.getElementById(xxx).style.padding = "5px 0px 5px 10px";
      document.getElementById(xxx).style.background = "#e7f0f7";
   } else if (document.all) {
      document.all[xxx].style.color = "#000000";
      document.all[xxx].style.padding = "5px 0px 5px 10px";
      document.all[xxx].style.background = "#e7f0f7";
   } else {

   }
}

function check_login_form() {
   document.login_form.user.value = "";
   document.login_form.pwd.value = "";
   return false;
}

function check_feedback_form() {
   return true;
}
