function show_recap_pic(pic_id,event_id,type,sport)
{
	$('header').hide();
	var iv = $('image_viewer');
	var iv2 = $('image_viewer2');
	var pf = $('picture_frame');
		iv.show();
		iv2.show();
	new Ajax.Updater('caption_frame', '/ajax/get_caption.php?photo_id=' + pic_id + '&sport=' + sport, { method: 'get' });
	new Ajax.Updater('picture_list', '/ajax/get_picture_list.php?event_id=' + event_id + '&type=' + type, { method: 'get' });
	pf.update('<img id="myImage" src="http://images.allpro.com/IMAGE/' + pic_id + '">');
	window.scrollTo(0,0);
	

}
function show_recap_pic_single(pic_id,sport)
{
	var pf = $('picture_frame');
	new Ajax.Updater('caption_frame', '/ajax/get_caption.php?photo_id=' + pic_id + '&sport=' + sport, { method: 'get' });
	pf.update('<img id="myImage" src="http://images.allpro.com/IMAGE/' + pic_id + '">');
	window.scrollTo(0,0);
}