function loadswf( file, width, height ) {
	myAgent = navigator.userAgent;
	myiPad = myAgent.indexOf("iPad",0);
	myiPhone = myAgent.indexOf("iPhone",0); 
   if (myiPad == -1 && myiPhone == -1){                        
      document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="' + width + '" height="' + height + '" align="" bgcolor="#fff">');
      document.write('<param name=movie value="./' + file + '" /><param name="wmode" value="opaque" /><embed src="./' + file + '" wmode="winodw" quality="high" loop="true" width="' + width + '" height="' + height + '" bgcolor="#fff" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer"></embed>');
      document.write('</object>');
   }else{
      document.write('<img src="./main/images/main_img.jpg" alt="メインイメージ" />');
   }
}


