var curShow=null;
		var tPopWait=10;
		var Obj; 
function MouseDown(obj) 
{ 
  Obj=obj; 
  Obj.setCapture(); 
  Obj.l=event.x-Obj.style.pixelLeft; 
  Obj.t=event.y-Obj.style.pixelTop; 
} 
function MouseMove() 
{ 
  if(Obj!=null) 
  { 
    Obj.style.left = event.x-Obj.l; 
    Obj.style.top = event.y-Obj.t; 
  } 
} 
function MouseUp() 
{ 
  if(Obj!=null) 
  { 
    Obj.releaseCapture(); 
    Obj=null; 
  } 
}
 	  function inn(tab)
	  {
		MouseX=event.x;
		MouseY=event.y;
		Layer1.style.filter="Alpha(Opacity=95)";
		Layer1.innerHTML=tab;

  		popWidth=Layer1.clientWidth;
  		popHeight=Layer1.clientHeight;
  		if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
  		else popLeftAdjust=0;
  		if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
  		else popTopAdjust=0;
  
  		Layer1.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
  		Layer1.style.top=MouseY+6+document.body.scrollTop+popTopAdjust;
		document.getElementById("sound").style.cursor="hand";
		
	  }
   	  function show()
	  {	
	  		document.getElementById("img1").style.cursor="hand";
			document.getElementById("img2").style.cursor="hand";
	  		document.getElementById("img1").style.display="none";
			document.getElementById("img2").style.display="block";
	  }
	  function hidden()
	  {
	  		document.getElementById("img1").style.cursor="hand";
			document.getElementById("img2").style.cursor="hand";
	  		document.getElementById("img1").style.display="block";
			document.getElementById("img2").style.display="none";
	  }
	  function closed()
	  {
	  		Layer1.style.left=0;
  			Layer1.style.top=0;
			Layer1.style.width=0;
			Layer1.style.height=0;
  			Layer1.style.filter="Alpha(Opacity=0)";
			bgsound.src=""
	  }
	  
		function _start()
		{
		bgsound.src =document.getElementById("sd").value;
		}