﻿// JScript File

function PopUp(url,width, height)
{
        window.open(url,"popup","width="+ width +", height="+ height+", toolbar=0, menubar=0");
} 
    
function switchImg(nazev)
{
        if(nazev == "software")
        {
            document.images[2].src = "img/vyvoj_hover.gif";
            return;
        }
        
        if(nazev == "admin")
        {
            document.images[3].src = "img/sprava_hover.gif";
            return;
        }
        
        if(nazev == "accounting")
        {
            document.images[1].src = "img/accounting_hover.gif";
            return;
        }
}
    
function switchImgBack(nazev)
{
        if(nazev == "software")
        {
            document.images[2].src = "img/vyvoj.gif";
            return;
        }
        
        if(nazev == "admin")
        {
            document.images[3].src = "img/sprava.gif";
            return;
        }
        
        if(nazev == "accounting")
        {
            document.images[1].src = "img/accounting.gif";
            return;
        }
}

function more(objectID)
{
    var element = document.getElementById(objectID);
    
    if (element.style.display == "none")
    {
        element.style.display = "block";
    }
    else
    {
        element.style.display = "none";
    }
}