if (flashinstalled == 2 && flashversion >= 8) {

	theVolume = Cookie.read('junevolume');
	if (theVolume) theUrl += '&vol='+theVolume;
	if (typeof(theWidth) == 'undefined') theWidth = '320';
	theUrl += '&size='+theWidth;
	theHeight = '25';

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
	document.write('width="'+theWidth+'" height="'+theHeight+'" id="video-object">');
	document.write('	<param name="allowScriptAccess" value="sameDomain" />');
	document.write('	<param name="movie" value="'+theUrl+'" />');
	document.write('	<param name="loop" value="false" />');
	document.write('	<param name="menu" value="false" />');
	document.write('	<param name="quality" value="autohigh" />');
	document.write('	<param name="scale" value="noscale" />');
	document.write('	<param name="salign" value="lt" />');
	document.write('	<param name="wmode" value="transparent" />');
	document.write('	<embed src="'+theUrl+'" loop="false" menu="false" quality="autohigh" ');
	document.write('scale="noscale" salign="lt" wmode="transparent" width="'+theWidth+'" height="'+theHeight+'" ');
	document.write('id="video-embed" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');

} else {

	theUrl = unescape(theUrl).substr(26);
	var theText = theUrl.split('/');
	theText = theText[theText.length-1];
	theText = theText.substr(0,theText.lastIndexOf('.'));
	theText = theText.split('_').join(' ').split('-').join(' ');
	document.write('<a href="'+theUrl+'">Play '+theText+'</a>');

}