function OpenPhoto (photoname, w, h) {
	url = "/photo.php?img="+photoname;
	h += 50;
	w += 25;
	Win=window.open(url, 'veiwPhoto',  'toolbar=0,scrollbars=1,resizable=1,location=0,directories=0,status=0,menubar=0,width='+w+',height='+h+',border=thin,top=50,left=50,help=0');
	Win.focus();
}
