function openVideo (video) {
  window.open('/imones/video/?video='+video, 'eniro_video', 'dependent=yes,height=300,width=340,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=auto,status=no,toolbar=no');
}
  
var vidDuration = 100;
var vidStep     = 10;
var vidK        = vidDuration / vidStep;

function expandVideo () {
  var cw = parseInt(document.getElementById('vidobj').width);
  var ch = parseInt(document.getElementById('vidobj').height);
  if (cw < 320) {
    document.getElementById('vidobj').width = cw + (160 / vidK);
    document.getElementById('vidobj').height = ch + (130 / vidK);
    var pos = cw - 160 + (160 / vidK);
    document.getElementById('video').style.left = "-" + pos + "px";
    setTimeout("expandVideo()", vidStep);
  }
}

function collapseVideo () {
  var cw = parseInt(document.getElementById('vidobj').width);
  var ch = parseInt(document.getElementById('vidobj').height);
  if (cw > 160) {
    document.getElementById('vidobj').width = cw - (160 / vidK);
    document.getElementById('vidobj').height = ch - (130 / vidK);
    var pos = cw - 160 - (160 / vidK);
    document.getElementById('video').style.left = "-" + pos + "px";
    setTimeout("collapseVideo()", vidStep);
  }
}