	<!-- Original:  Kipp W. Shinabarger (kipps@bigfoot.com) -->
	<!-- This script and many more are available free online at -->
	<!-- The JavaScript Source!! http://javascript.internet.com -->

	<!--  Begin
	function play(pSoundFile) {
		var MSIE=navigator.userAgent.indexOf("MSIE");
		var NETS=navigator.userAgent.indexOf("Netscape");
		var OPER=navigator.userAgent.indexOf("Opera");
		if((MSIE>-1) || (OPER>-1)) {
			var Quelle = "<BGSOUND SRC="+pSoundFile+" LOOP=INFINITE";
			document.write(Quelle);
		} else {
			var Quelle = "<BGSOUND SRC="+pSoundFile+" AUTOSTART=TRUE";
			document.write(Quelle);
			document.write("HIDDEN=TRUE VOLUME=100 LOOP=FALSE>");
		}
	}
	
//-->
