// Download/Js/ShowInfo.js		Written by Piotr Pytlik on 3-June-1999
// Copyright (c) 1999, Double P Software, All Rights Reserved, see http://www.doublep.com

function ShowInfo()
{
	if( isInfoPage )
		document.writeln(
'<FONT SIZE=5><B>' + Name + '</B></FONT> - ' + Title + '\n' +
'	(<A HREF="Sample.asp">View Sample</A>)<BR>'
		);
	else
		document.writeln(
'<img SRC="/imgs/bal-silv.gif" WIDTH=21 HEIGHT=21>\n' +
'<font SIZE=4><a HREF="' + Name + '">' + Name + '</a> - ' + Title + '</font><br>'
		);

	document.writeln( Subtitle + '<br>\n<font SIZE=2>\n' + Info + '\n</font><br>' );
	if( isInfoPage )
	{
		if( Extra != null ) document.writeln( '<p><font size=2>\n' + Extra + '\n</font>' );
		document.writeln( '<p>\n(' + Updated + ', Version ' + Version + ')\n' );
		document.writeln( '<script language="JavaScript" src="../Js/Fetch.js"></script>' );
		document.writeln( '<script language="JavaScript" src="../Js/FreeNote.js"></script>' );
	}
}