function close_gallery(){
	gallery = document.getElementById( 'container_photo_gallery' );
	gallery.style.visibility = 'hidden';
}

function show_gallery( params ){
	params = 'scrolls=' + document.documentElement.scrollTop + '&' + params;
	ajaxpage('image_gallery.php?' + params, 'container_photo_gallery');
	gallery = document.getElementById( 'container_photo_gallery' );
	gallery.style.visibility = 'visible';
}

function image_enlarge( theimage, thetext ){
	thediv = document.getElementById( 'inner-image-box' );
	thediv.innerHTML = '<img src="resizeimage.php?imagefile='+theimage+'&width=350&height=250">';
	
	thediv = document.getElementById( 'text-box' );
	thediv.innerHTML = thetext;
}

document.write('<div id="container_photo_gallery"></div>');

