// JavaScripts


// Play Sound
function play_sound(file)
{
	with (parent.sound_frame.document)
	{
		open ('text/html');
		writeln ('<HTML><HEAD>');
		writeln ('<TITLE></TITLE>');
		writeln ('</HEAD><BODY BGCOLOR="FFFFFF">Embedding<BR><BR>');
		if (navigator.appName == "Netscape") {
			writeln ('<EMBED SRC="' + file + '" WIDTH=2 HEIGHT=2 CONROLS=CONSOLE VOLUME=100 LOOP=TRUE AUTOSTART=TRUE NAME="music_embed" MASTERSOUND>');
		} else {
			writeln ('<BGSOUND SRC="' + file + '" LOOP=-1 VOLUME=0>');
		}
		writeln ('</BODY></HTML>');
		close ();
	}
}

// Stop Sound
function stop_sound()
{
	with (parent.sound_frame.document)
	{
		open ('text/html');
		writeln ('<HTML><HEAD>');
		writeln ('<TITLE></TITLE>');
		writeln ('</HEAD><BODY BGCOLOR="FFFFFF">');
		writeln ('</BODY></HTML>');
		close ();
	}
}

// Hilfefenster
function help_window(helpfile)
{
	F1 = window.open(helpfile + ".html", "help", "width=400,height=400,left=50,top=50,scrollbars=YES");
}


