function jsintro()
{
	with(document)
	{
	open();
	writeln('Introductions to Javascript (JS) programming:');
	writeln('<ul>');
	writeln('<li><a href="http://home.netscape.com/eng/mozilla/3.0/handbook/javascript/index.html" target="_top">');
	writeln('	Netscape`s Official (but technical) Authoring Guide</a>');
	writeln('<li><a href="http://developer.netscape.com/library/documentation/communicator/jsref/index.htm" target="_top">');
	writeln('	Netscape 4.0 Javascript Reference Manual</a>');
	writeln('<li><a href="http://www.freqgrafx.com/411/" target="_top">');
	writeln('	JS 411 Introduction and Tutorial for beginners</a>');
	writeln('<li><a href="http://rummelplatz.uni-mannheim.de/~skoch/js/index.htm" target="_top">');
	writeln('	"Voodoo": well-explained simple examples for the beginner</a>');
	writeln('<li><a href="http://www.ozemail.com.au/~infoxs/" target="_top">');
	writeln('	InfoAccess: JS basics for forms</a>');
	writeln('<li><a href="http://www.inquiry.com/techtips/js_pro/index_noframes.html" target="_top">');
	writeln('	"Ask the JS Pro" (advanced resources)</a>');
	writeln('<li><a href="http://www.c2.org/~andreww/javascript/" target="_top">');
	writeln('	JS Index (a list of resources)</a>');
	writeln('</ul>');
	close();
	}
}
