<!--


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();		
	}
	
//-->



