function getNewEntry(blogURL) {
	url = blogURL + 'new_entry.html';
    url += "?" + (new Date()).getTime();
    new Ajax.Updater({success: 'newentry'},
                     url, {
                         method: 'get',
                         onFailure: errorProcess('newentry')
                     });
    return false;
}

function getCategory(blogURL) {
	url = blogURL + 'category.html';
    url += "?" + (new Date()).getTime();
    new Ajax.Updater({success: 'category'},
                     url, {
                         method: 'get',
                         onFailure: errorProcess('category')
                     });
    return false;
}

function getArchive(blogURL) {
	url = blogURL + 'monthlyarchive.html';
    url += "?" + (new Date()).getTime();
    new Ajax.Updater({success: 'monthlyarchive'},
                     url, {
                         method: 'get',
                         onFailure: errorProcess('monthlyarchive')
                     });
    return false;
}
function errorProcess(id) {
    $(id).innerHTML = 'File Not Found';
}
