function turn_on(nr){
	if (document.all){
		//IE;
		document.all['poga_'+nr].TGotoFrame("_root", 2);
		document.all['poga_'+nr].TPlay("_root");
		return true;
	}
	
	if (document.getElementById){
		//Mozilla;
		document.getElementById('poga_'+nr).TGotoFrame("_root", 2);
		document.getElementById('poga_'+nr).TPlay("_root");
		return true;
	}
	return true;
}

function turn_off(nr){
	if (document.all){
		//IE;
		document.all['poga_'+nr].TGotoFrame("_root", 0);
		return true;
	}
		
	if (document.getElementById){
		//Mozilla;
		document.getElementById('poga_'+nr).TGotoFrame("_root", 0);
		return true;
	}
	return true;
}
