function popupWin(text,image,credit)
{
height= 550;
width = 650;

var xheight=0;
var xwidth=0;

if ( Number(navigator.appVersion.charAt(0)) >= 4 )
        {
        xheight = 0;
        xwidth = 25;
        }

photoWin = open( "","Photo","height="+height+",width="+width+",scrollbars=no,screenX="+xwidth+",screenY="+xheight );

photoWin.document.writeln("<html><head><title>on terror's trail</title>");
photoWin.document.writeln('<link rel="stylesheet" href="http://www.colby.edu/style.css" type="text/css">');
photoWin.document.writeln("</head><body bgcolor=white onblur='window.close()'>")
;
photoWin.document.writeln("<table width='100%' cellpadding='20' cellspacing='0' border='0'>");
photoWin.document.writeln("<tr><td valign='top'><img src='images/");
photoWin.document.writeln(image);
photoWin.document.writeln("'></p>");
photoWin.document.writeln("<font class='sans10'>" + text + "</font><br>" );
photoWin.document.writeln("<font class='sans9'>" + credit + "</font><br>" );
photoWin.document.writeln("</td></tr></table>");

photoWin.document.writeln("<center><a href='javascript:window.close()'><b class='sans10'>close window</b></a><center>");
photoWin.document.writeln("</body></html>");
photoWin.document.close();
}

