function popUp(imageUrl,title){
	// This width and height will not be used
	var url = "thumbnail.php?image="+imageUrl+";title=" + escape(title);


  // This width and height do not matter since the next page opens another window with the actual size
	window.open(url,'','width=1,height=1');
}
