
var swfinfo = new Object();

function writeSWFTag(filename, width, height, version)
{
	swfinfo.width = width;
	swfinfo.height = height;
	
	var swf = new jp.catalase.SwfTagWriter(filename, 'swf', width, height);
	swf.setRequiredVersion(version,0,0);
	swf.setAltContent('このFlashゲームを遊ぶには、最新の<a href="http://www.adobe.com/go/getflash/">Flash Player</a>がインストールされている必要があります。');
	document.write('<p>');
	swf.writeHTML();
	document.write('</p>');
}

// --------------------------------//
// 画面サイズ変更ボタン
// --------------------------------//
function changeScale(scale)
{
	if(typeof document.swf == "undefined") {return;}
	
    document.swf.width = swfinfo.width*scale;
    document.swf.height = swfinfo.height*scale;
}

function addScalingButton(num)
{
	if(typeof document.swf == "undefined") {return;}
	
    var html = "";
    html += '<div class="scalingbutton">';
    html += '画面サイズ変更：';
    for(var i = 1; i <= num; i++) {
        html += ' <input type="button" tabindex="'+i+'" value="x'+i+'" onClick="changeScale('+i+')" />';
    }
    html += '</div>';
    
    document.write(html);
    return;
}
