function writeDogatchReport(id) {
    var prand = ( new Date() ).getTime();
    var url = '/servlet/GetDogatchReport?rand='+prand;
    var pars = '';
    var myAjax = new Ajax.Updater(
                    { success: id },
                    url,
                    {
                        method: 'get',
                        parameters: pars,
                        onFailure: reportDogatchReportError
                    }
                );
}

function reportDogatchReportError(request) {
    //alert('Sorry. There was an error.');
}
document.write('				<!--▽ドガッチレポート-->' );
document.write('				<div id="sidereport" class="withsumbnail"></div>');

writeDogatchReport('sidereport');
