function mouseOverInput(obj) {
  obj.style.borderStyle="solid";
  obj.style.margin = '0px 0px 0px 0px';
}
function mouseOutInput(obj) {
  obj.style.borderStyle="none";
  obj.style.margin = '1px 1px 1px 1px';
}
var focusfunc = function() {focusInput(this)};
function focusInput(obj) {
  obj.onfocus = focusfunc;
  obj.style.border = "1px solid #000000";
  obj.onmouseout = "";
  obj.style.margin = '0px 0px 0px 0px';
}
var moifunc = function() {mouseOutInput(this)}; 

function blurInput (obj) {
  obj.style.border = "1px none #A8B2BB";
  obj.style.margin = '1px 1px 1px 1px';
  obj.onmouseout = moifunc;
}
