<!--

	
	function showPicture(I_intWidth,I_intHeight,I_strImageFilename,I_strTitle)
		{
			I_strParameters="";
			I_strParameters ='height=' + I_intHeight + ',width=' + I_intWidth + ',top=70,left=70';
			I_intVertPos=0;
			I_intVertPos=((I_intHeight/2)-20);
			var I_newWindow = null;	
			I_strImageFilename = "photos\/" + I_strImageFilename;	
													
			I_newWindow = window.open('_blank','remote',I_strParameters);
			I_newWindow.document.write('<html><head><title>' + I_strTitle + '<\/title><\/head><BODY onblur="self.close()\;">');	
			I_newWindow.document.write('<IMG src="' + I_strImageFilename + '" style="Z-INDEX: 110; LEFT: 0px; POSITION: absolute; TOP: 0px">');
			I_newWindow.document.write('<DIV style="DISPLAY: inline; Z-INDEX: 80; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: ' + I_intVertPos + 'px; HEIGHT: 40px" align="center" >Downloading..... <br>Please Wait</DIV>');
			I_newWindow.document.write("<\/body><\/html>");
			
			if(navigator.appName.indexOf('Microsoft Internet Explorer')!=-1)
				{
					I_newWindow.document.location.reload();	
				}	
								
			I_newWindow.focus();		
		}
		
	function showPictureLarge(I_intWidth,I_intHeight,I_strImageFilename,I_strTitle)
		{
			I_strParameters="";
			I_strParameters ='height=' + I_intHeight + ',width=' + I_intWidth + ',top=70,left=70,scrollbars=yes';
			I_intVertPos=0;
			I_intVertPos=((I_intHeight/2)-20);
			var I_newWindow = null;	
			I_strImageFilename = "photos\/" + I_strImageFilename;	
													
			I_newWindow = window.open('_blank','remote',I_strParameters);
			I_newWindow.document.write('<html><head><title>' + I_strTitle + '<\/title><\/head><BODY onblur="self.close()\;">');	
			I_newWindow.document.write('<IMG src="' + I_strImageFilename + '" style="Z-INDEX: 110; LEFT: 0px; POSITION: absolute; TOP: 0px">');
			I_newWindow.document.write('<DIV style="DISPLAY: inline; Z-INDEX: 80; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: ' + I_intVertPos + 'px; HEIGHT: 40px" align="center" >Downloading..... <br>Please Wait</DIV>');
			I_newWindow.document.write("<\/body><\/html>");
			
			if(navigator.appName.indexOf('Microsoft Internet Explorer')!=-1)
				{
					I_newWindow.document.location.reload();	
				}	
								
			I_newWindow.focus();		
		}

//-->
