
  function resizeView() {
    marginLeft=100;
    marginRight=100;
    marginTop=80;
    marginBottom=28;
    maxWidth=690;
    paddingContainer=5;
    if (document.getElementById('container')!==null) {
      document.getElementById('container').style.padding=paddingContainer+'px';
      try {
        // FireFox
        document.getElementById('container').style.height=(window.innerHeight-marginTop-marginBottom-2*paddingContainer)+'px';
        document.getElementById('container').style.top=marginTop+'px';
        if (window.innerWidth>maxWidth+marginLeft+marginRight+2*paddingContainer){
          document.getElementById('container').style.width=maxWidth+'px';
          document.getElementById('container').style.left=
            Math.floor((window.innerWidth-maxWidth+marginLeft-marginRight)/2-paddingContainer)+'px';         }
        else {
          document.getElementById('container').style.width=(window.innerWidth-marginLeft-marginRight-2*paddingContainer)+'px';
          document.getElementById('container').style.left=marginLeft+'px';
          };     
        }
      catch(err) {
        // Internet Explorer
        document.getElementById('container').style.height=(document.body.clientHeight-marginTop-marginBottom-2*paddingContainer)+'px';
        document.getElementById('container').style.top=marginTop+'px';
        if (document.body.clientWidth>maxWidth+marginLeft+marginRight+2*paddingContainer){
          document.getElementById('container').style.width=maxWidth+'px';
          document.getElementById('container').style.left=
            Math.floor((document.body.clientWidth-maxWidth+marginLeft-marginRight)/2-paddingContainer)+'px';
          }
        else {
          document.getElementById('container').style.width=(document.body.clientWidth-marginLeft-marginRight-2*paddingContainer)+'px';
          document.getElementById('container').style.left=marginLeft+'px';
          };     
        };
      };
    document.getElementById('container').style.visibility='visible';
    if (document.getElementById('mp3player')!==null) {
      document.getElementById('mp3player').style.left=document.getElementById('container').offsetLeft+8+'px';        
//      document.getElementById('mp3player').style.left=document.getElementById('container').offsetLeft+document.getElementById('container').offsetWidth-document.getElementById('mp3player').clientWidth-11+'px';        
      document.getElementById('mp3player').style.top=marginTop+document.getElementById('container').offsetHeight+((marginBottom-document.getElementById('mp3player').clientHeight)/2)+'px';        
      document.getElementById('mp3commentdiv').style.left=document.getElementById('mp3player').offsetLeft+'px';        
      document.getElementById('mp3commentdiv').style.top=document.getElementById('mp3player').offsetTop-145+'px';        
      };
    if (document.getElementById('h_band')!==null) {
      document.getElementById('h_band').style.left=document.getElementById('container').offsetLeft+13+'px';
      document.getElementById('h_band').style.top=marginTop-24+'px';
      document.getElementById('h_band').style.height='13px';
      document.getElementById('h_band').style.width=document.getElementById('container').offsetWidth-26+'px';
      };
    topvk=document.getElementById('container').offsetTop+((document.getElementById('container').offsetHeight-389)/2);
    if (topvk<76) {topvk=76;};
    if (document.getElementById('toppng')!==null) {
      document.getElementById('toppng').style.width=document.getElementById('container').offsetWidth+'px';
      document.getElementById('toppng').style.left=document.getElementById('container').offsetLeft+'px';
      document.getElementById('toppng').style.visibility='visible';
      };
    if (document.getElementById('bottompng')!==null) {
      document.getElementById('bottompng').style.width=document.getElementById('container').offsetWidth+'px';
      document.getElementById('bottompng').style.left=document.getElementById('container').offsetLeft+'px';
      document.getElementById('bottompng').style.top=document.getElementById('container').offsetHeight+marginTop+'px';        
      document.getElementById('bottompng').style.visibility='visible';
      };
    if (document.getElementById('menu_right')!==null) {
      document.getElementById('menu_right').style.left=document.getElementById('container').offsetWidth+document.getElementById('container').offsetLeft+'px';        
      document.getElementById('menu_right').style.top='100px';        
      };
    };

  function sizeView(){
    resizeView();
    topvk=document.getElementById('container').offsetTop+((document.getElementById('container').offsetHeight-389)/2);
    if (topvk<76) {topvk=76;};
    };


  window.onresize=resizeView;
  window.onload=sizeView;


