/** 
 * flvChatService connects to a FLV-player-instance and creates a timed messaging-window, using server-resources of I-V-O 
 *
 *  For more documentation; see flvChat.js
 * 
 * @author Ivo Toby, ivo@i-v-o.nl www.i-v-o.nl
 * @version 0.01a
 * @requires JW FLV MEDIA PLAYER 3.16 (http://www.jeroenwijering.com/?item=JW_FLV_Media_Player) , Prototype.js by Sam Stephenson (http://www.prototypejs.org/) and Scriptaculous (http://script.aculo.us/) by Thomas Fuchs and a fairly decent browser 
 * @constructor initialize
 * 
 * THIS CLASS IS GPL, see licence.txt .
 * 
 */


	var flvChatService = Class.create(flvChat, {
	
		initialize:function($super, playerID, container, userCode){
			this.instID = 'flvChatService_' + parseInt(Math.random()*1000000); // internal OBJECTID, used as a reference to requested objects (instID is sent to server) 
			var uri = 'http://www.tliner.com/jwchatRPC.php?userCode=' + userCode;
			//var uri = 'http://laptop.i-v-o.nl/tliner/jwchatRPC.php?userCode=' + userCode;
			$super(playerID, container, uri);
		}
		
	});