var games = new Array();
var price_czk = new Array();
var slot_czk = new Array();
var price_eur = new Array();
var slot_eur = new Array();
var price_svk = new Array();
var slot_svk = new Array();
var base_slots = new Array();
var min_slots = new Array();
var max_slots = new Array();
var unit_slots = new Array();

function nabidka(idex){
if (idex.style.display == 'none')
idex.style.display='';
else
idex.style.display='none'
}

function writeSlots(idex2){
var form = document.getElementById(idex2);
var div = document.getElementById('calcSlots');
var i=0;
var string="<select name=\"slots\" onchange=\"spocitej('calcForm')\" class=\"selectbox\">";
for (i=min_slots[form.game.value];i<=max_slots[form.game.value];i++) 
{
  if(i%unit_slots[form.game.value]==0)
  string = string + "<option value=\"" + i + "\">" + i + " slotů PUBLIC server!</option>\n";
}
string = string + "</select>";
div.innerHTML=string;
}

