
function open_soundclip(filename) {
	var filepath='http://www.hdsma.org/aix_records_audio_samples/' + filename;
	
	newwindow2=window.open('','name','height=220,width=300,toolbar=no,location=no,directories=no,menubar=no,resizable=yes,scrollbars=yes');
	var tmp = newwindow2.document;
		
	if(navigator.userAgent.indexOf('Mac') != -1)
	{
	  tmp.write('<HTML><HEAD><TITLE></TITLE></HEAD>');
	  tmp.write('<BODY style="margin-top=0px;margin-bottom=0px;margin-left=0px;margin-right=0px">');
	  tmp.write('<object  width="300" height="200" CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
	  tmp.write('      <PARAM name="SRC" VALUE="' + filepath + '">');
	  tmp.write('          <PARAM name="AUTOPLAY" VALUE="true">');
	  tmp.write('          <PARAM name="CONTROLLER" VALUE="TRUE">');
	  tmp.write('          <PARAM name="TYPE" VALUE="video/quicktime">');
	  tmp.write('          <PARAM name="PLUGINSPAGE" VALUE="http://www.apple.com/quicktime/download/indext.html">');
	  tmp.write('          <PARAM name="target" VALUE="myself">');
	  tmp.write('          <embed width="300" height="200" src="' + filepath + '" ');
	  tmp.write('										target="myself" ');
	  tmp.write('										controller="true" ');
	  tmp.write('										type="video/quicktime" ');
	  tmp.write('										autoplay="true" ');
	  tmp.write('										pluginspage="http://www.apple.com/quicktime/download/indext.html"');
	  tmp.write('									></embed>');
	  tmp.write('        </object>');
	  tmp.write('</BODY>');	  
	  tmp.write('</HTML>');
	}
	else
	{ 
	  tmp.write('<HTML><HEAD><TITLE></TITLE></HEAD>');
	  tmp.write('<BODY style="margin-top=0px;margin-bottom=0px;margin-left=0px;margin-right=0px">');
	  tmp.write('<OBJECT ID="MediaPlayer1" width="300" height="200" ');
	  tmp.write('classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" ');
	  tmp.write('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" ');
	  tmp.write('standby="Loading Microsoft Windows Media Player components..." ');
	  tmp.write('type="application/x-oleobject"> ');
	  tmp.write('<PARAM NAME="FileName" VALUE="' + filepath + '"> ');
	  tmp.write('<PARAM NAME="animationatStart" VALUE="true"> ');
	  tmp.write('<PARAM NAME="transparentatStart" VALUE="true"> ');
	  tmp.write('<PARAM NAME="autoStart" VALUE="true"> ');
	  tmp.write('<PARAM NAME="showControls" VALUE="true"> ');
	  tmp.write('<PARAM NAME="ShowDisplay" VALUE="false"> ');
	  tmp.write('<EMBED type="application/x-mplayer2" pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/" ');
	  tmp.write('width="300" height="200" SRC="' + filepath + '" name="MediaPlayer1" AutoStart=true> </EMBED> </OBJECT> ');
	  tmp.write('</BODY>');	  
	  tmp.write('</HTML>');	  
	}
}