﻿$(document).ready(function() {
   $("input,select,textarea").focus(function() {
      $(this).addClass("MfcInputFocus");
   }).blur(function() {
      $(this).removeClass("MfcInputFocus");
   });
   $(".CmnOnlineInput").focus(function() {
      $(this).addClass("CmnOnlineInputFocus");
   }).blur(function() {
      $(this).removeClass("CmnOnlineInputFocus");
      $(this).removeClass("CmnOnlineInputError");
   });
   $(".CmnOnlineInputError").focus(function() {
      $(this).removeClass("CmnOnlineInputError");
      $(this).addClass("CmnOnlineInputFocus");
   }).blur(function() {
      $(this).removeClass("CmnOnlineInputFocus");
      $(this).addClass("CmnOnlineInput");
   });
});

function addBookmark() {
   var url = location.href;
   var title = document.title;
   if (window.sidebar) { // firefox
      window.sidebar.addPanel(title, url, "");
   } else if (document.all) { //MSIE
      window.external.AddFavorite(url, title);
   } else {
      alert("Sorry, your browser doesn't support this");
   }
}

