// JavaScript Document
				var expImg = new Image()
				var imageViewer
				var imgUrl	
				function imgSwitch(newSrc){
					imgObj = document.images["imgViewer"]
					imgObj.src = newSrc
				    }
				
				function openWindow(theImage){
				expImg = new Image()
				imgUrl = theImage
				expImg.src = imgUrl
				loadImage()
				}
				
				function loadImage(){
				
				if(imageViewer){imageViewer.close();}
					if(expImg.width==0)
						{
						setTimeout ("loadImage()",100)
						}
					else
						{
						sHtml = "<title>Opteum&#8482;</title><body  marginheight='0' marginwidth='0' leftmargin='0' topmargin='0'><img src='"+ imgUrl + "'></body>"
						imageViewer = window.open(imgUrl,"imageViewer","scrollbars=no,Height=" + expImg.height + ",Width=" + expImg.width + "")
						imageViewer.document.write(sHtml)
						}
				}
