////////////////////////////////////////////////////////
function play(url)
{
	var opts = 'width=400,height=100,left=500,toolbar=0,menubar=0,location=0,' +
		'directories=0,resizable=0';
	var win = window.open("", "", opts);
	win.document.write("<html><body>" +
		"<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B'" +  		
		"codebase='http://www.apple.com/qtactivex/qtplugin.cab'" +
		"height='40' width='380'><param name='src' value=" + url + ">" +
		"<param name='autoplay' value='true'>" +
		"<embed height='40' width='380' name='soundfile' autostart='true' src=" +
		url + "></embed></object></body></html>");
	win.document.close;
}

function openTextWindow(url)
{
	var opts = 'width=540,left=500,scrollbars=1,toolbar=0,menubar=0,location=0,' +
		'directories=0,resizable=0';
	window.open(url, "", opts);
}
