function SwapImage(ImageFile,obj){
 document[obj].src = ImageFile;
 return true;
}

function FormFocus(obj){
 if(document.getElementById || document.all){
  obj.style.border="1px solid #B8292F";
  obj.style.backgroundColor="#EFEFEF";
 }
}

function FormBlur(obj){
 if(document.getElementById || document.all){
  obj.style.border="1px solid #999999";
  obj.style.backgroundColor="";
 }
}
