FIRST READ AND ACCEPT THE LICENSE BEFORE USING THIS SOFTWARE.

--------------------------------

This is a demo version, but for a full version which supports much smaller audio files
(usually) by about 75%, plus supports streaming voice & audio visit http://www.wyka-warzecha.com!

Quick Docs:
-------------------

To 'Install' this, simply unzip all the contents to a directory on your website, and then you
can load in the 'example.html' page in your browser.

ALSO:

THIS IS AN EVALUATION VERSION. SO, THERE IS A TWO SECOND
PAUSE BEFORE ANYTHING IS PLAYED, PLUS A COPYRIGHT MESSAGE
IS SHOWN IN THE STATUS BAR.

Quick Docs for MiniSpeak!:
-------------------

For a quick start, simply extract all the files to a directory on your website,
and then load in the example.html page. 

Next, to include MiniSpeak! in any of your pages, make sure
the following JavaScript and HTML code is present near the top of your
page And Enjoy!


<head>
<script language="Javascript">
var applet=null;
var model;

function SayPhrase(s)
{
	applet=document.applets.WWMiniSpeak;
	if(applet!=null)
		document.applets["WWMiniSpeak"].SayPhrase(s)
}
</script>
</head>
<BODY onLoad="SayPhrase('phrase_1.au');">
<APPLET  CODE="AMiniSpeak.class"  NAME="WWMiniSpeak"   WIDTH="0" HEIGHT="0">
<PARAM name="copyright" value="(C)-2000 1A Wyka-Warzecha at http://www.wyka-warzecha.com">
Visit <a href=http://www.wyka-warzecha.com>www.wyka-warzecha.com</a> for information about this software.
</APPLET>