				function SetPhotoViewer(iIndex) {
					intPhotoViewer = iIndex;
					LoadPhotoViewer();
				}
				function LoadPhotoViewer() {
					if(document.images)
						document.images['imgPhotoView'].src = arrPhotoViewer[intPhotoViewer-1];

					if(document.all)
						document.all('spnPhotoViewCount').innerHTML = '' + intPhotoViewer;
					else if(document.getElementById)
						document.getElementById('spnPhotoViewCount').innerHTML = '' + intPhotoViewer;
				}

