//
// Display the target image for this thumbnail
//
function displayThumb(src)
{
   var winWidth = 850;
   var winHeight = 710;

   eval("win = window.open('','Thumb', 'toolbar=0,scrollbars=1,location=0,status=0,resizable=1,menubar=0,width="+winWidth+",height="+winHeight+"');");

   // clear the content of the document
   win.document.open();
   win.document.writeln('<html>');
   win.document.writeln('<head>');
   win.document.writeln('<title>A Closer Look</title>');
   win.document.writeln('</head>');
   win.document.writeln('<body leftmargin="0" topmargin="0">');
   win.document.writeln('<div align="center"><table border="0">');
   win.document.writeln('<tr><td align="center"><img src="'+src+'"></td></tr>');
   win.document.writeln('</table></div>');
   win.document.writeln('<script language="JavaScript">');
   win.document.writeln('<!--');
   win.document.writeln('self.resizeTo(document.images[0].width + 10,document.images[0].height+10);');
   win.document.writeln('-->');
   win.document.writeln('</script>');
   win.document.writeln('</body>');
   win.document.writeln('</html>');
}


function displayThumb2(src)
{
   eval("win = window.open('','Thumb', 'toolbar=0,scrollbars=1,location=0,status=0,resizable=1,menubar=0');");

   // clear the content of the document
   win.document.open();
   win.document.writeln('<html>');
   win.document.writeln('<head>');
   win.document.writeln('<title>A Closer Look</title>');
   win.document.writeln('</head>');
   win.document.writeln('<body leftmargin="0" topmargin="0">');
   win.document.writeln('<div align="center"><table border="0">');
   win.document.writeln('<tr><td align="center"><img src="'+src+'"></td></tr>');
   win.document.writeln('</table></div>');
   win.document.writeln('<script language="JavaScript">');
   win.document.writeln('<!--');
   win.document.writeln('self.resizeTo(document.images[0].width + 10,document.images[0].height+10);');
   win.document.writeln('-->');
   win.document.writeln('</script>');
   win.document.writeln('</body>');
   win.document.writeln('</html>');
}


//
// Display the target image for this thumbnail
//
function displayFullImage(src)
{
   window.open(src,'Inside Look', 'toolbar=0,scrollbars=1,location=0,status=0,resizable=1,menubar=0');
}
