<!-- 

function writeFlashSrc(swfSource, base, width, height, name) {
	var flashTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" '
		+ 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" '
		+ 'width="'+width+'" height="'+height+'" id="'+name+'" align="middle" >'
		+ '<param name="movie" value="'+swfSource+'">'
		+ '<param name="quality" value="high">'
		+ '<param name="bgcolor" value="#ffffff" />'
		+ '<param name="base" value="'+base+'">'
		+ '<param name="allowScriptAccess" value="sameDomain" /> '
		+ '<embed src="'+swfSource+'" '
		+ 'quality="high" '
		+ 'bgcolor="#ffffff" '
		+ 'pluginspage="http://www.macromedia.com/go/getflashplaye" '
		+ 'type="application/x-shockwave-flash" '
		+ 'base="'+base+'" '
		+ 'height="'+height+'" '
		+ 'width="'+width+'" '
		+ 'name="'+name+'" '
		+ 'align="middle">'
		+ '<\/embed>'
		
		//+ '<noembed><img src="'+imgSource+'" width="'+width+'" height="'+height+'"></noembed>'
		+ '<\/object>';
		
	document.write(flashTags);
	
}
//bannerHeight, bannerFlashSrc, bannerImageSrc defined in masthead

// -->