function showPic(theURL, imgCaption, winWidth, winHeight,showLocation,showMenu,scrollWin,resizeWin) {
	var winX = (screen.width - winWidth) / 2;
	var winY = (screen.height - winHeight) / 2;
	windowAttributes= ('width=' + winWidth + ',height=' + winHeight + 'location=' + 'showLocation' + ',menubar=' + showMenu + ',scrollbars=' + scrollWin + ",resizable=" + resizeWin + ",left=" + winX + ",top=" + winY);
	w = window.open("blank.html", "", windowAttributes);	
	w.document.write( "<html><head><title>"+imgCaption+"</title>" );
	w.document.write( "<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>" );
	w.document.write( "<img src="+theURL+ " width="+ winWidth + " height="+ winHeight +  " border=0>" );
	w.document.write( "</body></html>" );	
}
