function newRelease()
{
document.write('      <p class="albumname">Eve to Dawn</p>\n');
document.write('      <p class="jacket"><img src="images/release_jacket.jpg" width="84" height="84" alt="Eve to Dawn" /></p>\n');
document.write('      <p class="release">2011/9/14<br />release</p>\n');
document.write('      <p class="price">￥3,200</p>\n');
document.write('      <p class="clear">徳間ジャパンコミュニケーションズ TKCA-73695</p>\n');
document.write('      <ol>\n');

document.write('        <li>1. A light in the dark\n');
document.write('        <p class="preview"><span>ＰＶ試聴</span><a href="javascript:void(0)" onclick="MM_openBrWindow(\'mp/pv_evetodawn/index.html\',\'watch\',\'width=444,height=273\')">PV (1m53sec)</a></p>\n');
document.write('        <li>2 The power of truth\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_02.mp3" onclick="mp3play(\'mp/evetodawn_02.mp3\',\'The power of truth\');return false" target="_blank">mp3 (27sec)</a></p></li>\n');
document.write('        <li>3 Come alive again\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_03.mp3" onclick="mp3play(\'mp/evetodawn_03.mp3\',\'Come alive again\');return false" target="_blank">mp3 (30sec)</a></p></li>\n');
document.write('        <li>4 Survivor\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_04.mp3" onclick="mp3play(\'mp/evetodawn_04.mp3\',\'Survivor\');return false" target="_blank">mp3 (25sec)</a></p></li>\n');
document.write('        <li>5 Keep you burning\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_05.mp3" onclick="mp3play(\'mp/evetodawn_05.mp3\',\'Keep you burning\');return false" target="_blank">mp3 (25sec)</a></p></li>\n');
document.write('        <li>6 Gonna do it my way\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_06.mp3" onclick="mp3play(\'mp/evetodawn_06.mp3\',\'Gonna do it my way\');return false" target="_blank">mp3 (33sec)</a></p></li>\n');
document.write('        <li>7 Hang tough\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_07.mp3" onclick="mp3play(\'mp/evetodawn_07.mp3\',\'Hang tough\');return false" target="_blank">mp3 (33sec)</a></p></li>\n');
document.write('        <li>8 喜怒哀楽\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_08.mp3" onclick="mp3play(\'mp/evetodawn_08.mp3\',\'喜怒哀楽\');return false" target="_blank">mp3 (37sec)</a></p></li>\n');
document.write('        <li>9 Comes the dawn\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_09.mp3" onclick="mp3play(\'mp/evetodawn_09.mp3\',\'Comes the dawn\');return false" target="_blank">mp3 (32sec)</a></p></li>\n');
document.write('        <li>10 Pandora\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_10.mp3" onclick="mp3play(\'mp/evetodawn_10.mp3\',\'Pandora\');return false" target="_blank">mp3 (33sec)</a></p></li>\n');
document.write('        <li>11 Crazy! Crazy! Crazy!\n');
document.write('        <p class="preview"><span>試聴する</span><a href="mp/evetodawn_11.mp3" onclick="mp3play(\'mp/evetodawn_11.mp3\',\'Crazy! Crazy! Crazy!\');return false" target="_blank">mp3 (26sec)</a></p></li>\n');
document.write('      </ol>\n');

}


function mp3play(filename,altname){
var html = new Array();
html[0] = "<html><head>\n";
html[1] = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\" />\n";
html[2] = "<title>視聴：";
html[3] = altname;
html[4] = "</title>\n";
html[5] = "<style type=\"text/css\"><!--\n";
html[6] = "body{background-color:#000;padding:0;margin:0text-align:center;}\n";
html[7] = "p{padding:20px;margin:0;border:#999 solid 3px;}\n";
html[8] = "--></style></head>\n";
html[9] = "<body onload=\"focus()\">\n"
html[10] = "<p>\n"
html[11] = "<object type=\"application/x-shockwave-flash\" data=\"mp/player.swf\" id=\"audioplayer1\" height=\"24\" width=\"290\">\n"
html[12] = "<param name=\"movie\" value=\"mp/player.swf\" />\n"
html[13] = "<param name=\"FlashVars\" value=\"autostart=yes&amp;titles="
html[14] = altname;
html[15] = "&amp;loader=0xcc0000&amp;playerID=1&amp;soundFile="
html[16] = filename;
html[17] = "\" />\n"
html[18] = "<param name=\"quality\" value=\"high\" />\n"
html[19] = "<param name=\"menu\" value=\"false\" />\n"
html[20] = "<param name=\"wmode\" value=\"transparent\" />\n"
html[21] = "</object>\n"
html[22] = "</p>\n"
html[23] = "</body>\n"
html[24] = "</html>\n"

var windowsize;
windowsize = "width=350,height=100";

newWindow = window.open('','',windowsize+",scrollbars=yes");
newWindow.document.open();
newWindow.document.write(html.join(""));
newWindow.document.close();

return false;
}

