function schreib(name)
{
	location.href = "mailto:"+name+"@"+"geo"+"soft"+"."+"ch";
}

function laden(nav,seite)
{
	parent.navi.document.location.href = nav+".html";
	parent.inhalt.document.location.href = seite+".html";
}

function mausauf(text)
{
	window.status = text;
}

function mausweg()
{
	window.status = "";
}

function mausaufb(art,text)
{
	window.status = text;
	if (art==0) document.pfeilB.src="back1.gif"; else document.pfeilF.src="forw1.gif";
}

function mauswegb(art)
{
	window.status = "";
	if (art==0) document.pfeilB.src="back.gif"; else document.pfeilF.src="forw.gif";
}

function zurueck()
{
	parent.inhalt.history.back();
}

function vorwaerts()
{
	parent.inhalt.history.forward();
}

function javaTest()
{
	text = "In Ihrem Browser ist ";
	if (!navigator.javaEnabled()) text = text + "JAVA leider noch nicht eingeschaltet !";
	else text = text + "JAVA eingeschaltet !";
	alert(text);
}

function javaVersion()
{
	text = "Ihr Java hat Version ";
	version = java.lang.System.getProperty("java.version");
	if (navigator.javaEnabled()) 
	{
		text = text + version;
		alert(text);
	}
}

function appletFenster(titel,name,text,archiv,applet,breit,hoch)
{
	fenster = window.open("",name,"width="+(breit+20)+",height="+(hoch+25)+",toolbar=no,scrollbars=no");
	fenster.document.writeln("<HTML>");
	fenster.document.writeln("<HEAD>");
	fenster.document.writeln("<TITLE>"+titel+"</TITLE>");
	fenster.document.writeln("</HEAD>");
	fenster.document.writeln("<BODY BGCOLOR='#FFCC00' BACKGROUND='brett.gif'>");
	fenster.document.writeln(text);
	fenster.document.writeln("<APPLET");
	fenster.document.writeln('  ARCHIVE="'+archiv+'"');
	fenster.document.writeln('  CODE="'+applet+'"');
	fenster.document.writeln("  WIDTH="+breit);
	fenster.document.writeln("  HEIGHT="+hoch);
	fenster.document.writeln("  ALIGN=center>");
	fenster.document.writeln("</APPLET>");
	fenster.document.writeln("</BODY>");
	fenster.document.writeln("</HTML>");
	fenster.document.close();
	fenster.focus();
}
