

		function doAction(postid,type){				
				$.post('http://www.mrtv4.net.mm/like', {postid:postid, type:type}, function(data){
															
						$('#'+postid+'_'+type+'s').text(data);
						if(type=='like'){
						 	type= 'unlike';
						}	
						else{ 
							type= 'like';
						}					
						$('#'+postid+'_'+type+'s').fadeIn();	
						$('#'+postid+'_'+type+'s').fadeOut();						
				});					
			}


/***       for 4tv      *********/



		var loading = "<div id='loading'><img src='http://www.mrtv4.net.mm/img/front_images/loading31.gif' /></div>";		
			
			function channelDetail(chid){				
				$('#display_channel').html('');						
				$.post('http://www.mrtv4.net.mm/show', {channel_id:chid}, function(data){	
						$('#display_channel').html(loading);
						setTimeout(		function(){
						$('#display_channel').html('');
						$('#display_channel').html(data);	
								} 
							, 2500); 
																												
				});					
			}
