function fEvent(sType,oInput){
        switch (sType){
            case "focus" :
                oInput.isfocus = true;
            case "mouseover" :
                oInput.style.borderColor = '#cc0000';
                break;
            case "blur" :
                oInput.isfocus = false;
            case "mouseout" :
                if(!oInput.isfocus){
                    oInput.style.borderColor='#eeeeee';
                }
                break;
        }
    }