   
	//Change the background color on Blur/Focus
	function oF(obj){
	    try {
    		var vBG = obj.style.backgroundColor;
	    	obj.style.backgroundColor='#FFFFCC';//lightyellow
		    obj.onblur = function(){
		                            try {
          	    					        obj.style.backgroundColor='#FFFFFF';
                                    } catch(e) {
                                    }
				    		}
        } catch(e) {
        }
	}
	
	
    
