
var num=0;// ????? ????? ?????? ????? 1
function Rand()  {
num=Math.round(Math.random());
}
function Play() 
 {document.all.mp.src='player/tr'+num+'.wav'
 if (num==1) {
 window.status='Play: Мой Внутренний Мир';
 }
 else {window.status='Play: Готика 2';}
 }

function Stop() {document.all.mp.src='player/'}
function Next() {Rand(); Play();} 

function starbar(txt) {
	window.status=txt;
	}
Next();




