var playingRT = -1;
function stopPlay(FSID){
	var rt = "rt"+FSID;
	if (playingRT != rt){
		if (playingRT != -1){
			objRT = eval('document.' + playingRT);
			objRT.GotoFrame(3);
			objRT.Play();
		}
		playingRT = rt;
	}
}
