
	<!-- Hide from Old Browsers
		if (top.location != self.location) {
			top.location.replace(self.location)
		}

		newWindow=null;
		function OpenMP3(opt,soundfile,filedesc) {
			newWindow=window.open("","newWin","toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=650,height=300")
			newWindow.document.writeln('<HTML><HEAD><link rel="stylesheet" href="css\/style.css"\/><TITLE>GBC - ' + filedesc + '<\/TITLE><\/HEAD>')
			newWindow.document.writeln('<BODY class="dark_blue"><TABLE  class="dark_blue" width="100%" border="0">')
			newWindow.document.writeln('<tr class="dark_blue"><td class="dark_blue" colspan="100%"><img src="images\/gbclogo.gif" align="left"><img src="images/stainedglass.gif" align="right"><\/TD><\/TR>')
			newWindow.document.writeln('<tr class="dark_blue"><td class="dark_blue" colspan="100%">' + filedesc + '<\/td><\/TR>')
			newWindow.document.writeln('<tr class="dark_blue"><td class="dark_blue" colspan="100%">&nbsp;<\/TD><\/TR>')
			if (opt == 'DL') {
				newWindow.document.writeln('<tr class="dark_blue"><td class="dark_blue" colspan="100%">To Download the MP3 Sound File to your PC, Right-Click the "Download" link below, then choose "Save Target As"...<\/td><\/tr>')
				newWindow.document.writeln('<tr class="dark_blue"><td class="dark_blue" colspan="100%" align="center"> ')
				newWindow.document.writeln('<a href="' + soundfile + '">Download<\/a><\/td>')
				newWindow.document.writeln('<\/tr>')
			} else if (opt == 'WMP') {
				var WMP7;
				if(window.ActiveXObject) {
				    WMP7 = new ActiveXObject("WMPlayer.OCX.7");
				} else if (window.GeckoActiveXObject) {
					WMP7 = new GeckoActiveXObject("WMPlayer.OCX.7");
				}
				// Windows Media Player 7 Code
				if ( WMP7 ) {
					newWindow.document.write ('<TD align="center"><OBJECT ID=MediaPlayer ');
					newWindow.document.write (' CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6');
					newWindow.document.write (' standby="Loading Microsoft Windows Media Player components..."');
					newWindow.document.write (' TYPE="application/x-oleobject" width="225" height="65">');
					newWindow.document.write ('<PARAM NAME="url" VALUE="' + soundfile + '">');
					newWindow.document.write ('<PARAM NAME="AutoStart" VALUE="false">');
					newWindow.document.write ('<PARAM NAME="ShowControls" VALUE="1">');
					newWindow.document.write ('<PARAM NAME="uiMode" VALUE="full">');
					newWindow.document.write ('<\/OBJECT><\/TD>');
				} else {
					// Windows Media Player 6.4 Code
					//IE Code
					newWindow.document.write ('<TD align="center"><OBJECT ID=MediaPlayer ');
					newWindow.document.write ('CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 ');
					newWindow.document.write ('CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 ');
					newWindow.document.write ('standby="Loading Microsoft Windows Media Player components..." ');
					newWindow.document.write ('TYPE="application/x-oleobject" width="225" height="65">');
					newWindow.document.write ('<PARAM NAME="FileName" VALUE="' + soundfile + '">');
					newWindow.document.write ('<PARAM NAME="AutoStart" VALUE="false">');
					newWindow.document.write ('<PARAM NAME="ShowControls" VALUE="1">');
				}
			} else if (opt == 'QT') {
				newWindow.document.writeln('<td align="center"><object width="225" height="18" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ')
				newWindow.document.writeln('codebase="http:\/\/www.apple.com\/qtactivex\/qtplugin.cab">')
				newWindow.document.writeln('<param name="src" value="' + soundfile + '">')
				newWindow.document.writeln('<param name="autoplay" value="false"><param name="controller" value="true">')
				newWindow.document.writeln('<\/object><\/td>')
			}				
			newWindow.document.writeln("<\/TR><\/TABLE><\/BODY><\/HTML>")
			newWindow.document.close()
			newWindow.focus()
		}

 --> 
