//
// Copyright (C) 1999, Pacific CodeWorks, Inc.
// $Id: release.js,v 1.1 2004-02-26 02:23:25 greg Exp $ - $Date: 2004-02-26 02:23:25 $
//
//
//release() writes the release of the product to the screen
//
<!--
function release(inc)
{
	s1 = "<FONT SIZE=+";
	s2 = ">"
	s3 = "Release XxXxX";
	s4 = "</FONT>"

	document.writeln(s1+inc+s2);
	document.writeln(s3);
	document.writeln(s4);
}
//-->

