
/**
 * getMainSWF()
 * main.swf をロード
 */
function getMainSWF(width, height) {
	swfLoaderMain("main.swf", width, height);
}

/**
 * getProfileSWF()
 * profile.swf をロード
 */
function getProfileSWF(width, height) {
	swfLoaderMain("profile.swf", width, height);
}


/**
 * swfLoaderMain()
 * swf をロードするタグを出力
 */
function swfLoaderMain(fileName, width, height) {
	var tags = '<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="' + width + '" height="' + height + '"><param name="movie" value="' + tmplDir + '/swf/' + fileName + '" type="a" allowScriptAccess="always"><param name="play" value="true"><param name="allowScriptAccess" value="always"><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" /><embed src="' + tmplDir + '/swf/' + fileName + '" width="' + width + '" height="' + height + '" type="a" allowScriptAccess="always" wmode="transparent" quality="high" bgcolor="#ffffff" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>'
	document.write(tags);
}


