function handleSearch(){
if(document.getElementById('hae').value!=""){
		//alert(document.getElementById('hae').value);
		window.location='/hae/'+document.getElementById('hae').value;
		};
}

function handleEnter(inField, e) {
    var charCode;
    
    if(e && e.which){
        charCode = e.which;
    }else if(window.event){
        e = window.event;
        charCode = e.keyCode;
    }

    if(charCode == 13) {
        if(document.getElementById('hae').value!=""){
		//alert(document.getElementById('hae').value);
		window.location='/hae/'+document.getElementById('hae').value;
		};
    }
}