function photoGallery(growerCode,botCode) {
	window.open("http://www.rptuthill.com/gallery.php?growerCode=" + growerCode + "&code=" + botCode, 'imageGallery', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=900,height=650,left=50,top=25');
}
function addPhotoTrigger() {
	if(!document.getElementById('growerCode')) return false;
	if(!document.getElementById('plantList')) return false;
	
	var growerCode = document.getElementById('growerCode').value;
	var plantList = document.getElementById('plantList');
	var spans = plantList.getElementsByTagName('span');
	for(var i=0; i<spans.length; i++) {
		if(spans[i].className != "photo") continue;

		var a = document.createElement('a');
		a.id = spans[i].id;
		a.className = 'photo';
		a.href = "#";
		a.onclick = function() {
			photoGallery(document.getElementById('growerCode').value,this.id);
			return false;
		}
		var tn = document.createTextNode('view photos');
		a.appendChild(tn)
		
		spans[i].parentNode.replaceChild(a,spans[i]);
	}
}
addLoadEvent(addPhotoTrigger);