function collapseBox(id) {
	var ob = $(id);
	ob.style.display = 'block';
	var myHeightEffect = new fx.Height(
		ob , {
			duration: 500
		}
	);
	myHeightEffect.toggle();
}

function openGallery(pid, id) {
	window.open('gallery.php?pid='+pid+'&id='+id,'','Toolbar=0,Location=0,Directories=0,Status=0,Menubar=0,Scrollbars=1,Resizable=0,Width=600,Height=600, left=200, top=50');
}

function showPhoto(photo) {
	window.open('photo.php?photo='+photo,'','Toolbar=0, Location=0, Visible=0, Directories=0, Status=0, Menubar=0, Scrollbars=0, Resizable=no, Width=50, Height=50, left=200, top=50');
}

