function verVideo(video,autoplay, arriba) {
   if (arriba == 1) {
      window.location = "#arriba";
   }
   //document.getElementById("panelvideo").innerHTML = "";
   var vid = video.replace("?","/");
   //alert(vid);
   vid = vid.replace("=","/");
   //alert(vid);
   if (autoplay == 1) {
      vid += "&autoplay=1";
   };
  // alert(vid);
   var so = new SWFObject(vid, "videoSWF", "425", "350", "6", "#000000");
  // alert(so);
   so.write("panelvideo");
}

