//ブログパーツ
function webpita_blogparts_music001( music_url, color )
{
  var htm = '';
  htm = htm + '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100" height="30" id="webpita_sound" title="webpita_sound">';
  htm = htm + '<param name="movie" value="http://curemix.com/blogparts/music/music001/music001.swf" />';
  htm = htm + '<param name="quality" value="high">';
  htm = htm + '<param name="wmode" value="transparent" />';
  htm = htm + '<param name="swfversion" value="9.0.45.0">';
  htm = htm + '<param name="FlashVars" value="musicfile=' + music_url + '&partscolor=' + color + '" />';
  htm = htm + '<!-- このパラメータタグにより、Flash Player 6.0 または 6.5 以降を使用して、Flash Player の最新バージョンをダウンロードするようメッセージが表示されます。ユーザにメッセージを表示させないようにする場合はパラメータタグを削除します。 -->';
  htm = htm + '<param name="expressinstall" value="Scripts/expressInstall.swf">';
  htm = htm + '<!-- 次のオブジェクトタグは IE 以外のブラウザで使用するためのものです。IE では IECC を使用して非表示にします。 -->';
  htm = htm + '<!--[if !IE]>-->';
  htm = htm + '<object data="http://curemix.com/blogparts/music/music001/music001.swf" type="application/x-shockwave-flash" width="100" height="30">';
  htm = htm + '<!--<![endif]-->';
  htm = htm + '<param name="quality" value="high">';
  htm = htm + '<param name="wmode" value="transparent" />';
  htm = htm + '<param name="allowScriptAccess" value="always" />';
  htm = htm + '<param name="swfversion" value="9.0.45.0">';
  htm = htm + '<param name="FlashVars" value="musicfile=' + music_url + '&partscolor=' + color + '" />';
  htm = htm + '<param name="expressinstall" value="Scripts/expressInstall.swf">';
  htm = htm + '<!-- ブラウザには、Flash Player 6.0 以前のバージョンを使用して次の代替コンテンツが表示されます。 -->';
  htm = htm + '<div>';
  htm = htm + '<h4>このページのコンテンツには、Adobe Flash Player の最新バージョンが必要です。</h4>';
  htm = htm + '<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Adobe Flash Player を取得" width="112" height="33" /></a></p>';
  htm = htm + '</div>';
  htm = htm + '<!--[if !IE]>-->';
  htm = htm + '</object>';
  htm = htm + '<!--<![endif]-->';
  htm = htm + '</object>';
  //alert(musicurl);
  document.write(htm);
}

//新しいウィンドウを開く
function webpita_win(url,windowname) {
	var features="location=yes, menubar=yes, status=yes, scrollbars=yes, resizable=yes, toolbar=yes";
		features+=", left=0";
		features+=", width="+window.screen.width;
		features+=", top=0";
		features+=", height="+window.screen.height;
	window.open(url,windowname,features);
}