
document.write('<DIV id="player_deplacable" STYLE="position:absolute; top:30; left:300">');
document.write('<TABLE cellspacing=0 WIDTH=200>');
document.write('  <TR><TD align="center" BGCOLOR=#242424 onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><FONT SIZE=1 COLOR=#969696><b><i>Glissez-moi où vous voulez !</i></b></FONT></TD></TR>');
document.write('  <TR><TD align="center" BGCOLOR=#242424 onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><div id="player_titre_mp3"></div></TD></TR>');
document.write('  <TR><TD align="center" BGCOLOR=#000000>');
document.write('    <object id="myplayer" type="application/x-shockwave-flash" data="player_mp3_maxi.swf" width="200" height="20">');
document.write('      <param name="movie" value="player_mp3_maxi.swf" />');
document.write('      <param name="FlashVars" value="mp3=musiques/Symphominie01-mvt1.mp3&amp;volume=100&amp;bgcolor=000000&amp;buttonovercolor=ff66ff&amp;sliderovercolor=ff66ff&amp;loadingcolor=ff66ff&amp;textcolor=ff66ff&amp;showvolume=1&amp;showinfo=1" />');
document.write('    </object>');
document.write('  </TD></TR>');
//document.write('  <TR><TD align="center" BGCOLOR=#242424><div id="player_ligne_lien_mp3"><A id="player_lien_mp3" HREF="" class="musique passouligne gris" ><FONT SIZE=2>Télécharger <i>(clic droit)</i></FONT></A></div></TD></TR>');
document.write('  <TR><TD align="center" BGCOLOR=#242424><div id="player_ligne_lien_mp3"></div></TD></TR>');
document.write('</TABLE></DIV>');

clickOui = false;
bloc_x = 300;
bloc_y = 30;

function testClick() {
		base_x = x-bloc_x;
		base_y = y-bloc_y;
		clickOui=true;
	}
function testClick2() {
		clickOui=false;
	}


function get_mouse(e)
	{
	x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	if(clickOui && document.getElementById)
		{
		bloc_x = x-base_x;
		bloc_y = y-base_y;
		}
	document.getElementById("player_deplacable").style.left = bloc_x;
  	document.getElementById("player_deplacable").style.top = bloc_y;
	}
if(navigator.appName.substring(0,3) == "Net")
	document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;