// This function opens a new browser window and writes
// HTML to display an image with a title and caption

function show_picture( pFileName, pTitle, pCaption) {

// specify window paramaters
	pictureWin = window.open( "", "picture", "width=600,height=450,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// write content to window
	pictureWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
	pictureWin.document.write('<BODY BGCOLOR=#ffffff TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
	pictureWin.document.write('<center>');
	pictureWin.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font><p>');
	pictureWin.document.write('<img src="' + pFileName + '"><p>');
	pictureWin.document.write('<font face="arial,helvetica">');	
	pictureWin.document.write( '"' + pTitle + '" <br>');

	pictureWin.document.write('<a href="http://www.internet-computer-checkup.com/">Internet Computer Checkup</a>');
	pictureWin.document.write('<p></font></body></html>');
	pictureWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") pictureWin.focus();

}
// done hiding from old browsers -->