//******************************************************
//		VIDEO BOX
//******************************************************

function winW() {
   if (window.innerWidth)
      /* NN4 a kompatibilní prohlížeče */
      return window.innerWidth;
   else if
   (document.documentElement &&
   document.documentElement.clientWidth)
      /* MSIE6 v std. režimu - Opera a Mozilla
      již uspěly s window.innerWidth */
      return document.documentElement.clientWidth;
   else if
   (document.wrapsts && document.wrapsts.clientWidth)
      /* starší MSIE + MSIE6 v quirk režimu */
      return document.wrapsts.clientWidth;
   else
      return null;      
} 



function VideoBox() {		
   
    var wrapsts = document.getElementById('wrapsts').offsetHeight;
       
    document.getElementById('recommendBG').style.display = 'block';
    document.getElementById('recommendBG').style.height = wrapsts + 'px';
    
    document.getElementById('form').style.left=(winW()/2)-310 + 'px';
    document.getElementById('form').style.display='block';
    
    window.scrollTo(0, 0)
}


function HideVideoBox() {
	parent.document.getElementById('form').style.display='none';
	parent.document.getElementById('recommendBG').style.display='none';

}