<!-- start of JavaScript code, hide code for old browsers
// play a sound via a new window
// Usage: <A href="javascript:void(0)" onClick="fOpenPlay('sound.mp3', 'title', 'text', 'image', '310', '445')">play sound</A>
// width and height ahould be about 20 bigger then the picture dimensions
function fOpenPlay(file, title, text, imgfile, width, height){
	newWindow = window.open("","targetName","scrollbars=1,resizable=1,toolbar=0,width="+width+",height="+height);
	newWindow.document.write("<HTML><HEAD><TITLE>" + title + "</TITLE></HEAD>");
	newWindow.document.write('<BODY>');
// newWindow.document.write('<BODY onBlur="window.close()">'); // close window if focus is removed

newWindow.document.write('<H2 ALIGN="center">'+title+'</H2>');
if (text != "")
	newWindow.document.write('<TABLE ALIGN="center"><TR><TD>' + text + '</TD></TR></TABLE>');
if (imgfile != "")
	newWindow.document.write('<TABLE ALIGN="center"><TR><TD><IMG SRC="' + imgfile + '"></TD></TR></TABLE>');

if (navigator.appName == "Microsoft Internet Explorer") {
	var vMajorBrowserVersion = parseInt(navigator.appVersion);
	var sAgent = navigator.userAgent;
	if (sAgent.indexOf("IE 4")  > -1) {
		vMajorBrowserVersion = 4;
	}
	else if (sAgent.indexOf("IE 5")  > -1) {
		vMajorBrowserVersion = 5;
	}
	else if (sAgent.indexOf("IE 6")  > -1) {
		vMajorBrowserVersion = 6;
	}
	else {
		vMajorBrowserVersion = 99;
	}
	if (vMajorBrowserVersion < 4) {
		alert("Microsoft Internet Explorer less than v.4 not supported. Please upgrade to v.4 or greater!");
		top.location.href="Empty.htm";
	}

	if (vMajorBrowserVersion < 6) {
		newWindow.document.write('<bgsound SRC="' + file + '">');
		newWindow.document.write('<PRE></PRE><CENTER><A HREF="' + file + '" onMouseOver="window.status=\'spiele Musiktitel\'; return true">ert&ouml;ne bitte noch einmal</A></CENTER>');
	}
	else {
		newWindow.document.write('<CENTER><EMBED SRC="' + file + '" pluginSpace="http://www.kaembel.ch/about/FFormats.htm" hidden="false" loop="false" autostart="true" ALT="spiele Musiktitel">');
		newWindow.document.write('<NOEMBED><A HREF="' + file + '" onMouseOver="window.status=\'spiele Musiktitel\'; return true">spiele Musiktitel</A>');
		newWindow.document.write('</NOEMBED></EMBED></CENTER>');
	}
}
else {
	newWindow.document.write('<CENTER><EMBED SRC="' + file + '" pluginSpace="http://www.kaembel.ch/about/FFormats.htm" hidden="false" loop="false" autostart="true" ALT="spiele Musiktitel">');
	newWindow.document.write('<NOEMBED><A HREF="' + file + '" onMouseOver="window.status=\'spiele Musiktitel\'; return true">spiele Musiktitel</A>');
	newWindow.document.write('</NOEMBED></EMBED></CENTER>');
}

//	newWindow.document.write('<script language="JavaScript">document.title="Any Title";setTimeout("window.close()",8000);</script>'); // close window after 8 seconds
newWindow.document.write('</BODY></HTML>');
newWindow.focus();
newWindow.document.close();
}
// -->


