/*

===========================================================
 KEUKENSTUDIE ZELCK WEBSITE
===========================================================
 File: main.js
 The common javascript functions for the project.
-----------------------------------------------------------

*/

function showPhoto(photoname, dir)
{
	var width = 500;
	var height = 450;
	var format = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,';

	format += 'width=' + width + ',height=' + height + ',left=' + (screen.width-width-20)/2 + ',top=' + (screen.height-height-80)/2;
	window.open('showphoto.php?photo=' + photoname + '&dir=' + dir, photoname, format);
}

