

function ShowTopImage()
{
	var myDate = new Date();
	
	myMonth = myDate.getMonth() + 1;
	
	if( myMonth < 10 ){
		myMonth = "0" + myMonth;
	}
	
	document.write( '<img src="www/contents/flash/noflash/' + myMonth + '.jpg" alt=""  usemap="#top_imgMap" border="0" ><br>' );
//	document.write( '<img src="www/contents/flash/noscript_img.jpg" alt=""  usemap="#top_imgMap" border="0" ><br>' );

}


function getFlashPlayerVersion() {

	var vsn = '';
	if ( navigator.plugins && navigator.mimeTypes.length ) {
		// not IE
		try {
			var tmp = navigator.plugins["Shockwave Flash"].description.match(/([0-9]+)/);
			vsn = tmp[0];
		}
		catch(e) {
			vsn = false;
		}
	}
	else {
		// IE
		try {
			var tmp = new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable
			("$version").match(/([0-9]+)/);
			vsn = tmp[0];
		}
		catch(e) {
			vsn = false;
		}
	}
	
	return vsn;

}


var vsn = getFlashPlayerVersion();

if (vsn == false) {
	ShowTopImage();
}
else {
	document.write('<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="920" height="230">');
	document.write('<param name="movie" value="www/contents/flash/top.swf" />');
	document.write('	<!--[if !IE]>-->');
	document.write('	<object type="application/x-shockwave-flash" data="www/contents/flash/top.swf" width="920" height="230"></object>');
	document.write('	<!--<![endif]-->');
	document.write('</object>');
}


