var server="http://www.broz-d.cz/aplikace/shop/dan/" 

function skupina(x,j)
{
   id=server+"shop.exe/s"
   id=id+"?skupina="+x+"&jazyk="+j
   id=id+"&rnd="+Math.round(Math.random()*1000) 
   parent.goods.location.href=id 
}

function oblast(x,j)
{
  id=server+"shop.exe/obl"
  id=id+"?oblast="+x+"&jazyk="+j
  id=id+"&rnd="+Math.round(Math.random()*1000)
  parent.goods.location.href=id
} 

function vyber(j)
{
   id=server+"shop.exe/n"
   id=id+"?vyber="+document.form1.vyber.value+"&jazyk="+j
   id=id+"&rnd="+Math.round(Math.random()*1000) 
   parent.goods.location.href=id 
}

function kosik(jazyk)
{
    window.open(server+"shop.exe/k?jazyk="+jazyk+"&rnd="+Math.round(Math.random()*1000),"kosik","width=450,height=500,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no")
}

function pokladna(jazyk)
{
    window.open(server+"shop.exe/p?jazyk="+jazyk+"&rnd="+Math.round(Math.random()*1000),"kosik","width=450,height=500,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no")
}

function pridej(id,jazyk)
{
pocet=1
pocet=document["form1"]["pocet"+id].value
//alert("pocet" +id)
window.open(server+"shop.exe/pridej?jazyk="+jazyk+"&produkt="+id+"&pocet="+pocet+"&rnd="+Math.round(Math.random()*1000),"kosik","width=450,height=500,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no")
}

function foto(x)
{
    Okno=window.open("","","width=350,height=350,toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,copyhistory=no")
    Okno.document.open()
    Okno.document.writeln('<html>')
    Okno.document.writeln('<head>')
    Okno.document.writeln('<title>Foto</title>')
    Okno.document.writeln('</head>')
    Okno.document.writeln('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
    Okno.document.write('<img src="http://www.broz-d.cz/eshop/data/foto/'+x+'">')
    Okno.document.writeln('</body>')
    Okno.document.writeln('</html>')
    Okno.document.close()
}