function submit_form(form) {
	document.getElementById(form).submit();
}

function update_gallery(image, caption) {
	
	document.getElementById('gallery_image').src=image;
	document.getElementById('gallery_caption').innerHTML=caption;
	
		// $('#gallery_caption').attr('html', caption);
}