// JavaScript Document
function cz()
{
 stranka=location.href;
 stranka=(stranka.replace(/_en.htm/,"_cz.htm"));
 stranka=(stranka.replace(/_de.htm/,"_cz.htm"));
 pozice=stranka.lastIndexOf("#");
 if (pozice>0) stranka=stranka.slice(0,pozice);
 location.href=stranka;
};

function de()
{
 stranka=location.href;
 stranka=(stranka.replace(/_cz.htm/,"_de.htm"));
 stranka=(stranka.replace(/_en.htm/,"_de.htm"));
 pozice=stranka.lastIndexOf("#");
 if (pozice>0) stranka=stranka.slice(0,pozice);
 location.href=stranka;
};

function en()
{
 stranka=location.href;
 stranka=(stranka.replace(/_cz.htm/,"_en.htm"));
 stranka=(stranka.replace(/_de.htm/,"_en.htm"));
 pozice=stranka.lastIndexOf("#");
 if (pozice>0) stranka=stranka.slice(0,pozice);
 location.href=stranka;
};