
	document.write(putflash('http://www.pia.co.jp/cinema/special/070830_hero/banner.swf?Url=http://www.pia.co.jp/cinema/special/070830_hero/hero_sp.html',150,110,false,'#ff0000'));

	/* flash Input on html */
	function putflash( flashfile, w, h, transmode, bgc ){
		
		this.file = flashfile;
		this.w = w;
		this.h = h;
		this.transmode = transmode;
		
		if( this.transmode ) {
			this.transObj = '<param name="wmode" value="transparent" />';
			this.transEmd =  'wmode="transparent"';
		}else{
			this.transObj = '';
			this.transEmd =  '';
		}
		
		this.oeTags = '<object id="flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    	+ 'width="'+this.w+'" height="'+this.h+'"'
    	+ 'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    	+ '<param name="movie" value="'+this.file+'" />'
    	+ '<param name="quality" value="high" />'
    	+ '<param name="bgcolor" value="'+bgc+'" />'
    	+ this.transObj
    	+ '<embed id="flash" src="'+this.file+'" quality="high"'
    	+ this.transEmd
    	+ 'width="'+this.w+'" height="'+this.h+'" name="flashObj"'
    	+ 'bgcolor="'+bgc+'"'
    	+ 'play="true"'
    	+ 'loop="false"'
    	+ 'quality="high"'
    	+ 'allowScriptAccess="always"'
    	+ 'type="application/x-shockwave-flash"'
    	+ 'pluginspage="https://www.macromedia.com/go/getflashplayer">'
    	+ '</EMBED>'
    	+ '</OBJECT>';
    	
    	return this.oeTags;
	}




