function embedFlash(f_src, f_id, f_width, f_height) {	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);	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=8,0,0,0',			'width', f_width,			'height', f_height,			'src', f_src,			'quality', 'high',			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',			'align', 'middle',			'play', 'true',			'loop', 'true',			'scale', 'showall',			'wmode', 'transparent',			'devicefont', 'false',			'id', f_id,			'bgcolor', '',			'name', f_id,			'menu', 'false',			'allowScriptAccess','sameDomain',			'movie', f_src,			'salign', ''			); //end AC code	}}function launchMP3() {	var thePage = "wp-content/themes/default/audio/mp3window.html";	var theName = "mp3player";	window.open(thePage,theName,"width=200,height=200,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,title=0,toolbar=0");}