function insert_esrb_logo(game, section, image_width, image_height, has_age_gate) {
  if(!(has_age_gate && (section == null || section == '' || section == 'home'))) {
    if (!$('menu_esrb_logo')) {
  		var style = '';
  		var leftPos = (160 - image_width)/2;
			style = 'z-index: 20; position: relative; left: '+leftPos+'px';
  		$('menu').insert(new Element('img', { 'src': '/data/games/'+game+'/images/esrb.gif', 'width': image_width, 'height': image_height, 'style': style, 'id': 'menu_esrb_logo' }));
    }
  }
}
