<!--	
		
		
		function showWindow(imageLarge)   	//set window size to image size	
			{	
				var newWindow=null;											
				newWindow=window.open('','remote','height=450,width=600,top=70,left=70');								
				newWindow.document.write('<html><head><title><\/title><\/head><BODY onblur="self.close();"><IMG src="' + imageLarge + '" style="Z-INDEX: 110; LEFT: 0px; POSITION: absolute; TOP: 0px"><\/body><\/html>');						
				if(navigator.appName.indexOf('Microsoft Internet Explorer')!=-1)
					{
						newWindow.document.location.reload();	
					}					
				newWindow.focus();									
			}
			
			
			
		function showPicture(intHeight,intWidth,strImageFilename,strTitle)
		{
			strParameters="";
			strParameters ='height=' + intHeight + ',width=' + intWidth + ',top=70,left=70';
			intVertPos=0;
			intVertPos=((intHeight/2)-20);
			var newWindow=null;	
			strImageFilename = "photos\/" + strImageFilename
												
			newWindow=window.open('','remote',strParameters);								
			newWindow.document.write('<html><head><title>' + strTitle + '<\/title><\/head><BODY onblur="self.close();">');
			newWindow.document.write('<IMG src="' + strImageFilename + '" style="Z-INDEX: 110; LEFT: 0px; POSITION: absolute; TOP: 0px">');
			newWindow.document.write('<DIV style="DISPLAY: inline; Z-INDEX: 80; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: ' + intVertPos + 'px; HEIGHT: 40px" align="center" ms_positioning="FlowLayout">Downloading..... <br>Please Wait</DIV>');
			newWindow.document.write('<\/body><\/html>');	
			
			if(navigator.appName.indexOf('Microsoft Internet Explorer')!=-1)
				{
					newWindow.document.location.reload();	
				}	
								
			newWindow.focus();		
		}
		
//-->