<!--
function flashDetector()
{
var hasFlash = false;
var requiredVersion = 6;
var browserName = navigator.appName;



if (browserName && browserName.indexOf("Microsoft") != -1 && navigator.appVersion.indexOf("Win") != -1) 
{
document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); 
document.write('on error resume next \n');
document.write('hasFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & requiredVersion)))\n');
document.write('</SCR' + 'IPT\> \n');
hasFlash = true;
}


else if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) 
{	
    var flashVersion = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
	if (flashVersion && parseInt(flashVersion.description.substring(flashVersion.description.indexOf(".")-1))>=requiredVersion)
	{
	hasFlash = true;
	}
} 


if (hasFlash == true) 
{
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="550" HEIGHT="400" id="bob_hope" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="http://assets.aarp.org/www.aarpmagazine.org_/articles/entertainment/bobhope/bob_hope.swf">');
document.write('<PARAM NAME=quality VALUE=high>');
document.write('<PARAM NAME=bgcolor VALUE=#CCCCCC>');
document.write('<EMBED src="http://assets.aarp.org/www.aarpmagazine.org_/articles/entertainment/bobhope/bob_hope.swf" quality=high bgcolor=#CCCCCC  WIDTH="550" HEIGHT="400" NAME="bob_hope" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT>');
} 

else  
{
document.write("Your browser does not support Flash 6.  Please download the plugin " + '<a href="http://www.macromedia.com/shockwave/download/triggerpages_mmcom/flash.html" target="new">' + "here" + '</a>' + ".");
}
}
//-->