function embedStationLite(mp3file, descriptionText) {
	var hasRightVersion = DetectFlashVer(9,0,0);
	if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
		'width', '400',
		'height', '60',
		'src', '/flash/PasteStationLite',
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'transparent',
		'devicefont', 'false',
		'id', 'PasteStationLite',
		'bgcolor', '#ffffff',
		'name', 'PasteStationLite',
		'menu', 'true',
		'allowScriptAccess','sameDomain',
		'allowFullScreen','true',
		'movie', 'http://www.pastemagazine.com/flash/PasteStationLite',
		'FlashVars', 'mp3file=' + mp3file +'&descriptionText=' + descriptionText,
		'salign', '',
		'style', 'margin-bottom: -10px;'
		); //end AC code
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<p>This content requires the Adobe Flash Player 9.'
		+ ' <a href=http://www.macromedia.com/go/getflash/>Get Flash</a></p>';
		document.write(alternateContent);  // insert non-flash content
	}
}
