var	m_playrow;

function of_replay()
{
     m_isplay=true;
     m_playrow=-1;
     of_renext();

     return 1;
}

function of_renext()
{
	of_restop();
	if  (m_playrow  > g_stenscount){
	     return 0;
	}
	m_playrow += 1;
	of_soundplay();
	return 1;
}

function of_repre()
{
	of_restop();
	if  (m_playrow  < 2){
	     return 0;
	}
	m_playrow -= 1;
	of_soundplay();
	return 1;
}

function of_restop()
{
             LRSoundStop("fullread_player");
}

function of_soundplay()
{
             LRSoundFileallOpen(g_stenssound[m_playrow] ,"fullread_player",true,0);
}
