<!--
/*
	Function to pop up full gallery image into own window.  You must supply accurate
	input parameters or bear the consequences.
*/
function showPic( imgName, imgCaption, imgWidth, imgHeight ) {
    winHeight=imgHeight+20;
    w = window.open('','Demo','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+imgWidth+',height='+winHeight);
    w.document.write( "<html><head><title>"+imgCaption+"</title>" );
	w.document.write( "<STYLE TYPE='text/css'>" );
	w.document.write( " A { font-size : 10px; color : #ffff99; text-decoration : none; font-weight : normal; font-family : Arial,Helvetica;}" );
	w.document.write( " A:Visited { color : #ffff99; }" );
	w.document.write( " A:Active { color : white; }" );
	w.document.write( " A:Hover { color : white; }" );
	w.document.write( "</STYLE>" );
    w.document.write( "</head><body bgcolor='#000000' text='#ffffff' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onBlur=" );
	w.document.write( "javascript:self.close();>" );
    w.document.write( "<table cellpadding=0 cellspacing=0 border=0><tr><td colspan=2><a href='javascript:top.window.close();'><img src='"+imgName+"' width="+imgWidth+" height="+imgHeight+" border=0 alt=''></a></td></tr>" );
    w.document.write( "<tr><td align='left'>&nbsp;&nbsp;<a>&copy; David Fairchild Studio</a></td>" );
    w.document.write( "<td align='right'><a href='javascript:top.window.close();'>close window</a>&nbsp;&nbsp;</td></tr>" );
    w.document.write( "</table></body></html>" );
	w.document.close();
}
//-->
