 function click(e) {
  if (navigator.appName == 'Netscape'
           && e.which == 3) {
      alert("Right Click Not Allowed")
      return false;
      }
   else {
      if (navigator.appName == 'Microsoft Internet Explorer'
          && event.button==2)
         alert("Right Click Not Allowed")
         return false;
         }
   return true;
 }
document.onmousedown=click


var nowPlying;
var aySound = new Array(); 


// PLACE YOUR SOUND FILES BELOW 
aySound[0] = "images/Blue_Mist.mp3"; 


var str="<OBJECT name='mediaPlayer' ID='mediaPlayer' "+
		"CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' "+
		"STANDBY='Loading Microsoft Windows Media Player components...' "+
		"TYPE='application/x-oleobject' "+
		"height='0' width='0'> "+
		"<PARAM NAME='URL' VALUE='images/Blue_Mist.mp3'> "+
		"<PARAM NAME='autoStart' VALUE='true'> "+
		"</OBJECT>"
document.write(str); 

function playSound(index) 
	{ 
		document.mediaPlayer.URL = aySound[index] ;
		document.mediaPlayer.controls.play();
      
	} 
function stopSound() 
	{ 
		document.mediaPlayer.controls.stop();
	} 