var state=2;
function StopMusic(){
	EP_pause("ep_player");
	state=1;
}

function StartMusic(){
	if(state==1){
		state=2;
		EP_play("ep_player"); 
	}

}
