function my_jump(my_url){
Element.hide('my_div');
var url = my_url;
var myAjax = new Ajax.Updater({success: 'placeholder'},url,{method: 'get', onFailure: reportError}); 
}

function reportError(request)
{
alert('Sorry. There was an error.');
}
