	function myfunc(event){
	if(event.keyCode==13){
	//alert($('#message_text').value);
	if($('#message_text').value!="")Send();
	
return false;}
}


$.post("http://refrash.com/collect.php",{},function(result){});

function Send() {
//alert($("#message_text").val());

   $.post("http://interdance.ru/chat/ajax.php",  
	{
        act: "send", 
        text: $("#message_text").val() //  сам текст сообщения
    },function (data) {
		//alert(data);
		}
	//,
  
	 );// по завершению отправки вызвовем функцию загрузки новых сообщений Load()
	//alert($("#message_text").val());
   // очистим поле ввода сообщения
//alert($("#message_text").val());
	document.getElementById("message_text").value="";
    $("#message_text").focus(); // и поставим на него фокус
  //    alert($("#message_text").val());
	 // очень важно из Send() вернуть false. Если этого не сделать то произойдёт отправка нашей формы, те страница перезагрузится
				
			}

var last_message_id = 0;
var load_in_process = false; 

var text1,text2='',istyping,send_text=0;


function Load() {


    if(!load_in_process)
    {
	
	    load_in_process = true; 
    	$.post("http://interdance.ru/chat/ajax.php", 
    	{   
      	    act: "load", 
      	    last: last_message_id
    	},
   	    function (result) {
		
		if(result!=''){}
		//alert(result);
		//eval(result);
		    load_in_process = false;
		});
		
	 }
	
	//alert(last_message_id);
}
  


  function LoadCont(){
         	$.post("http://interdance.ru/chat/contactlist.php", 
    	{
channel:1
	},
	function (result) {
		//alert(result);
		eval(result);
		}); 
  
  }
$(document).ready(function() {
$('#refrash_chat').css('height','350px');
$('#refrash_chat').css('left','50%');
$('#refrash_chat').css('margin-left','-250px');
$('#refrash_chat').css('width','500px');
$('#refrash_chat').css('backgroundColor','#222222');
$('#refrash_chat').css('border','3px solid #222222');
$('#refrash_chat').css('position','relative');
$('#refrash_chat').css('fontFamily','Helvetica, Arial, Georgia');
$('#refrash_chat').css('fontWeight','normal');
  if($.browser.msie6){
alert('1');
$('#chat_text_block').css('left','-3px');
$('#chat_text_block').css('top','290px');
  } 
$('#refrash_chat textarea').css('position','relative');
$('#refrash_chat').html('<!--[if IE]><style> #refrash_chat textarea{position:absolute;top:-4px;margin-left:15px;} </style><![endif]--><div id="cont" style="background-color:#555;font-size:12px;color:#DDD;display:block;width:106px;height:346px;padding:2px;position:absolute;top:0px;right:0px;"><div><b>На канале</b></div></div><div id="chat_area" style="padding:2px;font-size:13px;color:#DDD;overflow:auto;display:block;width:385px;height:285px;position:absolute;top:0px;left:-2px;"></div><div id="chat_text_block" style="display:block;width:390px;height:60px;position:absolute;top:293px;left:-10px;"><textarea onKeyUp="myfunc(event)" id="message_text" style="left:-3px;border:1px solid black;width:381px;height:56px;"></textarea></div>');

$('#control_header a').css('padding-left','3px'); 

$('#control_header a').css('padding-bottom','2px');
$('#control_header a').css('text-decoration','none');
$('#control_header a').css('color','#cacaca');



    setInterval("Load()", 600); 
    setInterval("LoadCont()", 600); 
});


