var randSound=new Array()
randSound[0]=["sound1.mp3"]
randSound[1]=["sound2.mp3"]

var whichSound = Math.round(Math.random()*(randSound.length-1));
function playSound(){
document.write('<embed src="'+randSound[whichSound]+'" height="20" width="20" autostart="true">');
}


