
function showpic(pic,filmname,picdesc) 
{
 PicWin = window.open( "", "Pic","width=525,height=575,toolbar=no,location=no,menubar=no,resizable=no,scrollbars=no");   
  PicWin.document.write('<html><head><title>'+ filmname + '</title>');
  PicWin.document.write('</head>');	
  PicWin.document.write('<BODY onResize="resize()" onLoad="window.focus()" BGCOLOR=#FFEBD7 topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
  PicWin.document.write('<center>');
  PicWin.document.write('<form><br><font face="Arial" size="2"><b>' + filmname + "</b></font><br><br>");
  PicWin.document.write('<img src="'+ pic + '" ' + 'border="1">');
  PicWin.document.write('<br><font face="Arial" size="1">'+ picdesc + '</font>');
  PicWin.document.write('<br><input type="button" value="Close" onClick="window.close()"></form>');
  PicWin.document.write('</body></html>');	
  PicWin.document.close();	
	
 if (navigator.appName.substring(0,8) == "Netscape") 
   PicWin.focus();

}

// -->
