//ochrana proti clickjackingu
if (top != self) top.location.href = self.location.href;

//mapa CR
function getStyle(id) 
{
	if (document.getElementById)
		return document.getElementById(id);
	else
		return false;
}

function chngr(rID)
{
	getStyle(rID).style.visibility = "visible";
}

function rstr(rID)
{
	getStyle(rID).style.visibility = "hidden";
}

function ButtonEnter(e, buttonId) 
{
    var key;

    if (window.event)
        key = window.event.keyCode; //IE
    else
        key = e.which; //firefox

    if (key == 13)
        document.getElementById(buttonId).click();    
    
    return (key != 13);         
}

function FuncEnter(e, funcName)
{
    var key;

    if (window.event)
        key = window.event.keyCode; //IE
    else
        key = e.which; //firefox

    if (key == 13)
        funcName();

    return (key != 13);            
}
//skyje/zobrazi ostatni informace o fondu
function showfond() {
    var ctr = document.getElementById("infofond");
    if (ctr.style.display == "block") {
        ctr.style.display = "none";
    }
    else {
        ctr.style.display = "block";
    }
}

//navigace pro sitemap (mala mapa pravem sloupci)
function redirAll(kraj, nameId) {
    var fc = document.getElementById(nameId + '_2');
    var bn = document.getElementById(nameId + '_1');
    var ps = document.getElementById(nameId + '_0');

    if (fc.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Seznam-Financnich-Center.aspx?Kraj=" + kraj;
    if (bn.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Seznam-Bankomatu.aspx?Kraj=" + kraj;
    if (ps.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Seznam-Post.aspx?Kraj=" + kraj;
}
function redirButtonAll(rblId, tbxId)
{
    var fc = document.getElementById(rblId + '_2');
    var bn = document.getElementById(rblId + '_1');
    var ps = document.getElementById(rblId + '_0');
    var txt = document.getElementById(tbxId);

    if (fc.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Hledani-Financnich-Center.aspx?Text=" + txt.value;
    if (bn.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Hledani-Bankomatu.aspx?Text=" + txt.value;
    if (ps.checked)
        window.location.href = "/O-postovni-sporitelne/Kontakty/Stranky/Hledani-Post.aspx?Text=" + txt.value;
}

function DisplayControl(id)
{
    var el = document.getElementById(id).style;
    el.display = (el.display == 'block') ? 'none' : 'block';
}

function SearchClick(searchUrl, tbxSearchId)
{
    var keyWord = document.getElementById(tbxSearchId).value;

    window.location.href = searchUrl + ReplaceInputChars(keyWord);
}

function ReplaceInputChars(searchText)
{
    var result = searchText.replace(/</g, "");
    result = result.replace(/>/g, "");
    result = result.replace(/'/g, "");
    result = result.replace(/%/g, "");
    result = result.replace(/;/g, "");
    result = result.replace(/\)/g, "");
    result = result.replace(/\(/g, "");
    result = result.replace(/&/g, "");

    return result;
}
