

function view(){
	
	//Netscapeの場合プラグインの状態取得
	var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	
	
	if ( (navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")<=0 && plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5 ) || ( navigator.appName && navigator.appName.indexOf("Microsoft")>=0 && navigator.appVersion.indexOf("MSIE 4.")<=0 )) {
	
	//swf,width,heightは変更
	//代替え画像も変更
	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="740" HEIGHT="478" id="s_mov" ALIGN="">');
	document.write('<PARAM NAME=movie VALUE="imgs/main.swf">');
	document.write('<PARAM NAME=quality VALUE=high>');
	document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF>');
	document.write('<EMBED src="imgs/main.swf" quality=high bgcolor=#FFFFFF  WIDTH="740" HEIGHT="478" NAME="s_mov" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('<NOEMBED><img src="imgs/main.jpg" width="740" height="478" border="0"></NOEMBED>');
	document.write('</OBJECT>');
} else {
	document.write('<img src="imgs/main.jpg" width="740" height="478" border="0">');
}


}
