function show_rad( pFileName, pTitle, pCaption) 

{

photoWin = window.open( "", "photo", "width=640,height=670,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');
 	
  photoWin.document.write('<BODY BGCOLOR=#000000 TEXT=#FFFFFF LINK=#33CCFF VLINK=#FF7777>');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
  photoWin.document.write('<img src="' + pFileName + '"><p>');
  photoWin.document.write('<font face="arial,helvetica">');	
  photoWin.document.write( '"' + pTitle + '" <br>');
  // photoWin.document.write('<a href="mailto: ">web@coscobweather.com</a><br>');
  //photoWin.document.write('APT Weather Image by, <a href="http://www.coscobweather.net/">Cos Cob Weather</a>');
 photoWin.document.write(' All rights reserved.');
 photoWin.document.write('</p></body></html>');
 photoWin.document.write('<script javascript src="private/noclick.js"></script>');
  photoWin.document.close();	
	
if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
