
function show_related_videos(video_id)
{
	 var sUrl = baseurl + "/ajax/video_related.php";
     var postData = "video_id=" + video_id;
     $.ajax({
         type: "POST",
         url: sUrl,
         data: postData,
         dataType: 'html',
         success: function(msg){
    	 	$("#tab-related").html(msg);
     	 },
         error: function()
         {
     		 
         }
     });
}
