/// js - video
function placeDiv(divWithPic){  
  var w = divWithPic.offsetWidth;
  var W = document.documentElement.offsetWidth;
  var h = divWithPic.offsetHeight;
  var H = (document.documentElement.clientHeight || document.documentElement.offsetHeight);
  var s = document.documentElement.scrollTop;
  var left = Math.round((W - w) / 2);
  divWithPic.style.left = left + 'px';
  var top = Math.round((H - h) / 2 + s);
  if(top < 0){
    top = 20;
  }
  divWithPic.style.top = top + 'px';  
  divWithPic.style.visibility = 'visible';
}
function makeDiv(imgSrc, alt){
  var divWithPic = document.createElement('div');
  document.body.appendChild(divWithPic);    
  divWithPic.id = 'divWithPic';
  placeDiv(divWithPic);
}
function Obj(file_name, file_title){
  makeDiv();
  var divWithPic = document.getElementById('divWithPic');
  divWithPic.innerHTML = '<img alt="" src="/files/tmpl/clouse.png" class="iePNG" id="clouseId" title="Закрыть" /><object id="videoplayer1511" width="505" height="380"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.goldsazan.ru/swf/uppod.swf" /><param name="flashvars" value="comment=' + file_title +'&st=http://www.goldsazan.ru/video48-1253.txt&file=http://www.goldsazan.ru/video/'+file_name+'.flv&poster=http://www.goldsazan.ru/files/tmpl/'+file_name+'.jpg" /><embed src="http://www.goldsazan.ru/swf/uppod.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" flashvars="comment=' + file_title +'&st=http://www.goldsazan.ru/video48-1253.txt&file=http://www.goldsazan.ru/video/'+file_name+'.flv&poster=http://www.goldsazan.ru/files/tmpl/'+file_name+'.jpg" width="505" height="380"></embed></object>';
  var clouse = document.getElementById('clouseId');
  clouse.onclick = function(){
    divWithPic.parentNode.removeChild(divWithPic);
  }
}
