function showpicture(title, picname){
  	document.getElementById('webgallery').style.display = 'block';

	var galleryFrame=document.getElementById("galleryframe"); 
	galleryFrame.src="photo.php?pic=" + picname + "&title=" + title; 
}
function hidewindow() {
  	parent.document.getElementById('webgallery').style.display = 'none';	
}

