function showPhoto(filename, path, width, height) {
	width = width+50;
	height = height+50;
	window.open('../preview.php?filename='+filename+'&path='+path, 'preview', 'directories=no,width='+width+',height='+height+',menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,channelmode=no,fullscreen=no');

}

function changePhoto(filename, path, width, height) {
	location.href="preview.php?filename="+filename+'&path='+path;

}

function showPress(filename) {
	window.open('press.php?filename='+filename, 'press', 'directories=no,width=600,height=560,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,channelmode=no,fullscreen=no');


}


function getPress(name) {

	imgs = document.getElementsByTagName('img');
	for(i=0;i<imgs.length;i++)
	{
		if (imgs[i].src.indexOf('img/circle.gif')>0) {
			imgs[i].src = 'img/spacer.gif'
		}
	}

	document.getElementById(name).src = 'img/circle.gif';
	name = "'"+name+"'";
	document.getElementById('press').innerHTML = '<a href="#" style="font-size: 12pt;" onClick="javascript: showPress('+name+');" >press</a>';


}
