function resultsLog(id){
    var date = new Date();
    var timestamp = date.getTime();
    new Ajax.Request("http://clevelandmagazine.com/WhenYouGoScripts/resultsLog.asp?id=" + id + "&time=" + timestamp, {
    method: 'get',
    onSuccess: function(transport) {
    }});
    return true;
}

function websiteLog(id){
    var date = new Date();
    var timestamp = date.getTime();
    new Ajax.Request("http://clevelandmagazine.com/WhenYouGoScripts/websiteLog.asp?id=" + id + "&time=" + timestamp, {
    method: 'get',
    onSuccess: function(transport) {
    }});
    return true;
}
