/*
  MAGEZI SOLUTIONS LTD
  2011
  lukwago@magezi.net
*/
var show_wndw = false;
$('#chat').click(function(e) {wdnw();});

function wdnw(){
	if(show_wndw){$('#cht_wdw').hide(); show_wndw = false;}
	else {$('#cht_wdw').show(); show_wndw = true; get_cht(); }
}

function load_cht(){
	$.ajax({
		   url: "cht/chat.php",
		   type: "POST",
		   data: "rn="+Math.random(),
		   timeout:200000,
		   /*beforeSend: function() { $('#results').html("<font color=blue>Saving</font> <img src = 'imgs/loader.gif' />")},*/
		   success: function(data) {
			 $('#cht_wdw').html(data);
		  }
	 });
}

function get_cht(){
	$.ajax({
		   url: "cht/get_chat.php",
		   type: "POST",
		   data: "rn="+Math.random(),
		   timeout:200000,
		   /*beforeSend: function() { $('#results').html("<font color=blue>Saving</font> <img src = 'imgs/loader.gif' />")},*/
		   success: function(data) {
			 var word = data.split('!-!-!-');
			 update_chat(word[1]);
			if(word[0])$('#show_chats').html($('#show_chats').html()+"<div class='cht_user_txt2'>"+word[0]+"</div>");
			$('#show_chats').scrollTop($('#show_chats').scrollHeight);
		  }
	 });
}

function update_chat(id){
	$.ajax({
		   url: "admin/updt_chat.php",
		   type: "POST",
		   data: "rn="+Math.random()+"&id="+id,
		   timeout:200000,
		   success: function(data) {
			
		  }
	 });
}
