function cT() {
  vi = document.c.video.value;
  $.get("data.xml?d="+new Date(),{},function(xml){
    $('item',xml).each(function() {
      sD = $(this).find("section").text();
      rD = $(this).find("status").text();
      mD = $(this).find("message").text();
      if(sD == 'video') stV = rD;
    });
    if(stV != vi){
      //alert("Cambiando video:"+stV);
      if(stV == 0) {
        $('#video-player').attr("src",'video_frame.php');
        $('#video-player').attr("height",305);
      }
      if(stV == 1) {
        $('#video-player').attr("src",'video.php');
        $('#video-player').attr("height",360);
      }
      document.c.video.value = stV;
    }
  });
}