//
//

var slash= new RegExp("[/\]","g");
function photo(snapshot, description, width, height)
	{
	var cWin;
	var url;
	width = width + 10;
	height = height + 33;
	url="/.lib/photo.htm?"+escape(snapshot.replace(slash,":")+"="+description);
	cWin=window.open(url, "_blank","width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
	}


