/*
	plant viewer
	
	ross, 14/09/2009, creation
*/

function _fcViewPhoto(newUrl) {
	var t = document.getElementById('plantMediumPhoto');
	
	t.src = newUrl;
	
	var l = document.getElementById('plantMediumPhotoLightboxLink');
	l.href = newUrl.replace('/medium/', '/large/');
	
	l = document.getElementById('plantMediumPhotoLightboxLink2');
	l.href = newUrl.replace('/medium/', '/large/');
	
	initLightbox();
}