function openWindowPhoto(url)
{
	if(photos == null || photos.closed())
	{
		var width = 550;
		var height = 500;
		// Set to bottom right side of screen...
		var left = window.screen.width - width - 14;
		var top = window.screen.height - height - 66;

		var photos = window.open('','photos','scrollbars=no, menubar=no, height=' + height + ', width=' + width + ', resizable=no, toolbar=no, location=no, status=no, top=' + top + ', left=' + left);
		if(photos != null)
		{
			// Write to new window...
			photos.document.write('<html><head><title>La maison du Bassin</title>');
			photos.document.write('<link rel="stylesheet" type="text/css" href="../style.css" />');
			photos.document.write('</head><body class="photoOpen">');
			photos.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td>');
			photos.document.write('<a href="javascript:self.close()"><img class="border-left border-right border-bottom border-top" src="' + url + '" border="0" width="' + width + '" height="' + height + '"/></a>');
			photos.document.write('</td></tr></table>');
			photos.document.write('</body></html>');
			photos.document.close();
			photos.focus();
		}
	}
	else
	{
		photos.focus();
	}
}