// [object - navigator.plugin | 030308a]
function getFlashPlayerVersion () {
	if (navigator.plugins) with (navigator) {
			var s = "application/x-shockwave-flash";
			if (mimeTypes && mimeTypes [s] && mimeTypes [s].enabledPlugin) {
				var nFlashPlayerVersion = navigator.plugins ["Shockwave Flash"].description.match (/\d+/);
			}
		} 
	return parseInt (nFlashPlayerVersion); 
};

function printPromotion () {
	if ((getFlashPlayerVersion() < 7 )) {
		document.write (
			'<img src="index/img/needflash.jpg" usemap="#PromotionImageMap2" width="630" height="630" border="0" alt="このサイトをご覧になるにはFlashPlayer7以上が必要です。">'
		);
	} else {
		document.write (
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" id="Promotion" width="630" height="630">' +
          '<param name="movie" value="index/img/index.swf">' +
          '<param name="quality" value="high">' +
          '<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ' +
          'base="swf" name="Promotion" width="630" height="630" src="index/img/index.swf"><\/embed><\/object><br>'
		);
	}
}

