// JavaScript Document

/* <![CDATA[ */

/*code for creating Show Information popup window*/

var newWindow;
function showImage(linkTarget){
             var diptychsWidth=600;
	  		 var diptychsHeight=500;


/* code to center the window*/
            var winLeft =(screen.width-diptychsWidth)/2;
            var winTop = (screen.height-diptychsHeight)/2;


	  		 var winOptions="toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no";
	  		 winOptions += ",width=" + diptychsWidth;
	  		 winOptions += ",height=" + diptychsHeight;

/* code to center the window*/
             winOptions +=",left=" + winLeft;
             winOptions += ",top=" + winTop;

	  		 imageWindow = window.open(linkTarget,"diptychsImages",winOptions);
	  		 imageWindow.focus();

       }

/* ]]> */

