function writeStuffBlog(id) {
    var prand = ( new Date() ).getTime();
    var url = '/servlet/GetStuffBlog?rand='+prand;
    var pars = '';
    var myAjax = new Ajax.Updater(
                    { success: id },
                    url,
                    {
                        method: 'get',
                        parameters: pars,
                        onFailure: reportStuffBlogError
                    }
                );
}

function reportStuffBlogError(request) {
    //alert('Sorry. There was an error.');
}

document.write('				<!-- ●● スタッフブログ ●●-->' );
document.write('				<div id="sideblog" class="withsumbnail"></div>' );
document.write('				<!-- ●● スタッフブログ ●●-->' );

writeStuffBlog('sideblog');