function Play(path,desc) {
	var win = window.open('', 'mp3player', 'width=300,height=130,directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no');
	win.document.write(
		'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"\n'
		+ '  "http://www.w3.org/TR/html4/strict.dtd">\n'
		+ '<html>\n'
		+ '<head>\n'
		+ '<meta name="MSSmartTagsPreventParsing" content="true">\n'
		+ '<meta http-equiv="imagetoolbar" content="no">\n'
		+ '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n'
		+ '<title>' +  desc + ' - Korero Maori</title>\n'
		+ '<style>\n'		
		+ 'body\n'
		+ '{\n'
		+ 'font-size: 66%;\n'
		+ 'font-family: Arial,  Helvetica, sans-serif;\n'
		+ '}\n'
		+ '</style>\n'				
		+ '</head>\n'
		+ '<body>\n'
		+ '<p>Playing sound: <strong>' + desc  + '</strong><p>\n'				
		+ '<p><object type="application/x-shockwave-flash" data="/flash/sound/musicplayer.swf?&autoplay=true&song_url=' +  path + '&"width="17" height="17">\n'
		+ '<param name="movie" value="/flash/sound/musicplayer.swf?&autoplay=true&song_url=' +  path + '&" />\n'
		+ 'To play to this clip you need Macromedia Flash Player.  You can download it at <a href="http://www.macromedia.com/go/getflashplayer">http://www.macromedia.com/go/getflashplayer<\/a><\/p>'
		+ '</object></p>\n'
		+ '<a href="javascript:window.parent.close();">Close Window</a><br>\n'
		+ '(Hint: minimize this window if you want to listen to more sounds without it popping up again)\n'		
		+ '</body>\n'
		+ '</html>\n'
	);
	win.document.close();
	return false;
}
