function fEvent(sType,oInput){
switch (sType){
case "focus" :
oInput.isfocus = true;
case "mouseover" :
oInput.style.borderColor = '#FF9900';
/*oInput.style.background = 'url(images/bgbox.jpg)';*/
break;
case "blur" :
oInput.isfocus = false;
oInput.style.background = '#73AB16';

case "mouseout" :
if(!oInput.isfocus){
oInput.style.borderColor='#FFF';
}
break;
}
}
