function launchFlash() {
	var swfobj = new SWFObject("media/spotlight_index.swf", "spotlight_index", "804", "816", "9", "#000000");
	swfobj.addParam("allowScriptAccess", "always");
	PBS_enable_cdn(swfobj);
	writeFlash(swfobj);
}

function writeFlash(objin) {
	if(PBS_FlashCanPlay(9)) {
		objin.write("spotlight_main");
	} else {
		var targetarea = document.getElementById('spotlight_main');
		var noflash = '<div id="noflash_main"><noscript><p>This feature requires JavaScript to be enabled.</p></noscript> '
					+ '<p>This feature requires the Adobe Flash Player, version 9 or higher.</p>'
					+ '<p>Download the <a href="http://www.macromedia.com/go/getflashplayer" target="_blank">free Flash player</a> now or go to the <a href="index_htmlversion.html">html version</a> of the page.</p>'
					+ '</div>';
		targetarea.innerHTML = noflash;
	}		
}