<!--
function playme( url )
{
    WM.FILENAME = url;
    WM.play();
}
function stopme()
{
    WM.stop();
}

function openSound(url){
	window.open(url, 'play', 'location=no, menubar=no, titlebar=no, status=no, scrollbars=no, resizable=no, height=135, width=300', true);
}

function playSound(url){
	if (navigator.appName == "Microsoft Internet Explorer") {
		writeObject('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer" src="'+url+'" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="1" HEIGHT="1" WIDTH="1" loop="false">','soundPanal')
	}else {
		writeObject('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer" src="'+url+'" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="1" HEIGHT="1" WIDTH="1" loop="false">','soundPanal')
	}	
}

function stopSound(){
	if (navigator.appName == "Microsoft Internet Explorer") {
		writeObject('','soundPanal')
	}else {
		writeObject('','soundPanal')
	}
}

function writeObject(text,id)
{
  if (document.getElementById)
  {
    x = document.getElementById(id);
    x.innerHTML = text;
  }
  else if (document.all)
  {
    x = document.all[id];
    x.innerHTML = text;
  }
  else if (document.layers)
  {
    x = document.layers[id];
    x.document.open();
    x.document.write(text);
    x.document.close();
  }
}
//-->
