var syncFlashHx = function () {
	var that = this;
	
	that.setTimeCode = function (seconds) {
		try{
			return Main.setTimeCode("flash_player", seconds);
		} catch(e) {}
	};
	
	that.getTimeCode = function () {
		try {
			return Main.getTimeCode("flash_player");
		} catch(e){}
	};
		
	return that;
};
