// JavaScript Document

window.onload = CheckResolution;

function CheckResolution()
{
  if((location.href == "http://www.cah2007.sportis.cz") || (location.href == "http://www.cah2007.sportis.cz/")) // pokud jsme na úvodní straně
  {
    if(screen.width < 1024)
    {
      alert("Minimální rozlišení pro tuto stránku je 1024 x 768 px, doporučené 1280*800+ px, Vaše rozlišení je " + screen.width + " x " + screen.height + " px což může způsobit špatné zobrazení stránky");
    }
  }
}


// =========================================================================================================================================

function open_cart(kam)
{
  var msg = window.open(kam, 'Karta', 'resizable=no,top=30,left=50,menubar=0,width=' + 335 + ',height=' + 680 + ',scrollbars=0,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function open_kraj(kam)
{
  var msg = window.open(kam, 'Karta', 'resizable=no,top=50,left=50,menubar=0,width=' + 335 + ',height=' + 100 + ',scrollbars=0,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function open_partneri(kam)
{
  var msg = window.open(kam, 'Partneri', 'resizable=yes,top=50,left=50,menubar=0,width=' + 500 + ',height=' + 630 + ',scrollbars=0,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function otevri_prilohy(kam)
{
  var msg = window.open(kam, 'Soubory', 'resizable=yes,top=50,left=50,menubar=0,width=200,height=400,scrollbars=0,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function read_pdf(kam)
{
  var msg = window.open(kam, 'PDF', 'resizable=1,top=50,left=10,menubar=0,width=' + ((screen.availWidth)-30) + ',height=' + ((screen.availHeight)-150) + ',scrollbars=1,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function otevri_login(kam)
{
  var msg = window.open(kam, 'Zobrazit', 'resizable=no,top=50,left=5,menubar=5,width=' + 900 + ',height=' + ((screen.availHeight)-150) + ',scrollbars=1,status=1,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function otevri_kompletni_seznam(kam)
{
  var msg = window.open(kam, 'Zobrazit', 'resizable=no,top=50,left=5,menubar=5,width=' + ((screen.availWidth)-30) + ',height=' + ((screen.availHeight)-150) + ',scrollbars=1,status=1,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function otevri(kam)
{
  var msg = window.open(kam, 'Zobrazit', 'resizable=no,top=100,left=5,menubar=5,width=400,height=400,scrollbars=0,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function zavri_okno()
{
 var msg = window.close()
}

// =========================================================================================================================================

function otevri_galerii(kam)
{
  var msg = window.open(kam, 'Zobrazit', 'resizable=no,top=100,left=100,menubar=0,width=600,height=600,scrollbars=1,status=0')
}

// =========================================================================================================================================

function openSporty(kam)
{
  var msg = window.open(kam, 'Sporty', 'resizable=yes,top=50,left=5,width=' + ((screen.availWidth)-30) + ',height=' + ((screen.availHeight)-150) + ',scrollbars=1,status=0,toolbar=0,menubar=0')
}

// =========================================================================================================================================

function odhlasit()
{
  window.setTimeout('zavri_okno();', 5000);
}

// =========================================================================================================================================

function fotogalerie(sirka, vyska)
{
  if(sirka != null && vyska != null)
  {
    window.resizeTo(sirka, vyska); 
  }
    else
  {
    if((document.getElementById('obr').width) > (document.getElementById('obr').height))
    {
      var width = document.getElementById('obr').width + 80;
      var height = document.getElementById('obr').height + 190;    
      window.resizeTo(width, height); 
    } else {
      var width = document.getElementById('obr').width + 80;
      var height = document.getElementById('obr').height + 190;
      window.resizeTo(width, height); 
    }
  }
}

// =========================================================================================================================================

function obr()
{
  if((document.getElementById('obr').width) > (document.getElementById('obr').height))
  {
    var width = document.getElementById('obr').width + 10;
    var height = document.getElementById('obr').height + 50;
    window.resizeTo(width, height); 
  } else {
    var width = document.getElementById('obr').width + 10;
    var height = document.getElementById('obr').height + 50;
    window.resizeTo(width, height); 
  }
}
 

