function photo_open(link,target,width,height)
	{
	var photoWindow = window.open(link,target,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width='+width+',height='+height);

	var X= +width+12;
	var Y= +height+48;
	photoWindow.resizeTo(+X , +Y);
	photoWindow.window.focus();
	}