

function wipeTxt(txt){
	$("txt").value='';
}


function submitForm(id){
	Event.observe(id, 'submit', function(event) {
    $(id).request({
        onFailure: function() { alert('Form submit failed'); },
        onSuccess: function(t) {
            $('result').update(t.responseText);
        }
    });
    Event.stop(event); // stop the form from submitting
});
return False;
	
}