var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE);

document.onmousemove = getMouseXY;

var tempX = 0
var tempY = 0
function getMouseXY(e) {
  if (IE) { 
    tempX = event.clientX + document.body.scrollLeft
    tempY = event.clientY + document.body.scrollTop
  } else {  
    tempX = e.pageX
    tempY = e.pageY
  }
  tempX = tempX - 110;

  tempY = tempY - 36;

  if (tempX < 0){tempX = 0}
  if (tempY < 0){tempY = 0}  
  return true
}


function musicplay(clip,artist)
{
 	pos.style.left=tempX;
 	pos.style.top=tempY;
	 
	 pos.style.left=tempX;
	pos.style.top=tempY;
	pos.innerHTML="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"220\" height=\"72\"><param name=\"movie\" value=\"music.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"flashvars\" value=\"music="+clip+"&artist="+artist+"\" /><embed src=\"music.swf\" width=\"220\" height=\"72\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" music=\"relax.mp3\"></embed></object>";
 	 
	 
	
 }
function closewindow(){
	pos.innerHTML = "";

}
