function ajaxRequest(goBackUrl,remoteUrl) {
    new Ajax.Request(remoteUrl, {
        method: 'get'
    });

    location.href = goBackUrl;
}
