function galleryDocument(){
	var swfFile="swf/panorama.swf"			//チェックファイル選択
	var w="580"						//movieの幅
	var h="282"						//movieの高さ
	var docUrl = window.location;		//ページURL
	var docTitle = document.title;		//ページタイトル
	var nextHtml = "0";					//メインコンテンツ設定 ※設定しない場合は「0」
	var nextSWF = "swf/panorama.swf";			//メインコンテンツ設定 ※設定しない場合は「0」
	
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="'+w+'" height="'+h+'" id="top" align="middle">');
	document.write ('<param name="allowScriptAccess" value="sameDomain" />');
	document.write ('<param name="movie" value="'+swfFile+'" />');
	document.write ('<param name="quality" value="best" />');
	document.write ('<param name="bgcolor" value="#ffffff" />');
	document.write ('<param name="wmode" value="opaque" / >');
	document.write ('<param name="FlashVars" value="MMredirectURL='+docUrl+'&MMplayerType=ActiveX&MMdoctitle='+docTitle+'&nextHtml='+nextHtml+'&nextSWF='+nextSWF+'">');
	document.write ('<embed src="'+swfFile+'" quality="high" bgcolor="#ffffff" width="'+w+'" height="'+h+'" name="top" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" FlashVars="MMredirectURL='+docUrl+'&MMplayerType=PlugIn&nextHtml='+nextHtml+'&nextSWF='+nextSWF+'" />');
	document.write ('</object>');
}

