
//固定サイズ別ウィンドウを開く
function winOpen(adress,xSize,ySize,scrlFlag){
	if(scrlFlag==1){
		var scrlPram = "yes";
	}else{
		var scrlPram = "no";
	}
	window.open(adress,"btv","width="+xSize+",height="+ySize+",scrollbars="+scrlPram+",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no");
}




//Flashを表示
function run()
{



//初期設定
var hasProductInstall = DetectFlashVer(6, 0, 65);
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
var MMredirectURL = window.location;
var bgColor = "#EEEFF0";


if ( hasProductInstall && !hasReqestedVersion) {

document.title = document.title.slice(0, 47) + " - Flash Player Installation";
var MMdoctitle = document.title;
    var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="100%"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="autouploader.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=ActiveX&MMdoctitle='+MMdoctitle+'" />'
    + '<param name="quality" value="high" /><param name="bgcolor" value="'+bgColor+'" />'
    + '<embed src="autouploader.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=PlugIn" quality="high" bgcolor="'+bgColor+'" '
    + 'width="100%" height="100%" name="detectiontest" aligh="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(productInstallOETags);

} else if (hasReqestedVersion) {

    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="100%"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="ver9.swf?isIE='+isIE+'&verIE='+getBrowserVersion()+'" /><param name="quality" value="high" /><param name="bgcolor" value="'+bgColor+'" /><param name="wmode" value="opaque" />'
    + '<embed src="ver9.swf?isIE='+isIE+'&verIE='+getBrowserVersion()+'" quality="high" bgcolor="'+bgColor+'" '
    + 'width="100%" height="100%" name="detectiontest" aligh="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);

} else {
    location.href="nonplugin.html"
}
}