//take vseobecne nastavenia eventov...
window.onresize=ResizeFunction;

//globalne objekty, nevytvaraju sa vzdy, co to by to mohlo zrychlit
var MinWidth=920;
//var OKWidth="88px"; aby vyzeralo rovnako
var OKWidth="11px";
var DocumentWidth=0;

function ResizeFunction()
{
	DocumentWidth=document.body.clientWidth;
	
	if (DocumentWidth<MinWidth)
		document.getElementById('ImportantCell').style.width=OKWidth;
	else
		document.getElementById('ImportantCell').style.width="";
}

function OpenWindow(OpenURL, width, height)
{
    dimensions = "";
    if (width)
        dimensions += "width=" + width + ", ";
    if (height)
        dimensions += "height=" + height + ", ";

    window.open(OpenURL, "PopUpWindow", dimensions + "status=no, toolbar=no, menubar=no, location=no, scrollbars=yes, resizeable=yes");
}

function zmena_style(id, newClass)
{
    identity=document.getElementById(id);
    if (!identity)
        return false;

    identity.className=newClass;
}

function zmena_style_spravy(id, newClass, lid, lnewClass)
{
    identity=document.getElementById(id);
    if (!identity)
        return false;

    identity.className=newClass;

    lidentity=document.getElementById(lid);
    lidentity.className=lnewClass;
}

function addbookmark()
{
    if (window.navigator.appName == "Microsoft Internet Explorer")
    {
        oHomePageOB = document.getElementById("oHomePage");
        oHomePageOB.setHomePage("http://www.mag-net.sk");
    }
    else
        alert("Táto možnosť je prístupná iba pre užívateľov MS IE\n(v každom prípade, čo sa týka Vášho browsera - správna voľba...).");
        
    event.returnValue = false;
}

function GetRemoveConfirm(name, newURL, MSObject)
{
	if (confirm("Naozaj chcete zmazať " + name + "?"))
    {
        if (window.navigator.appName == "Microsoft Internet Explorer")
            MSObject.href=newURL;

        window.location.href=newURL;
    }
}

function zFlasha()
{
    var polozka1 = document.getElementById("flashmenu").GetVariable("_root.home.ktore6");
    var polozka2 = document.getElementById("flashmenu").GetVariable("_root.nastav.ktore1");
    var polozka3 = document.getElementById("flashmenu").GetVariable("_root.siet.ktore2");
    var polozka4 = document.getElementById("flashmenu").GetVariable("_root.magnet.ktore3");
    var polozka5 = document.getElementById("flashmenu").GetVariable("_root.fibris.ktore4");
    if (polozka1 == 1) {
        document.getElementById("flashmenu").TGotoFrame("_root.home", 33);
        document.getElementById("flashmenu").SetVariable("_root.home.ktore6", "0");
        document.getElementById("flashmenu").TPlay("_root.home");
    }
    if (polozka2 == 1) {
        document.getElementById("flashmenu").TGotoFrame("_root.nastav", 48);
        document.getElementById("flashmenu").SetVariable("_root.nastav.ktore1", "0");
        document.getElementById("flashmenu").TPlay("_root.nastav");
    }
    if (polozka3 == 1) {
        document.getElementById("flashmenu").TGotoFrame("_root.siet", 48);
        document.getElementById("flashmenu").SetVariable("_root.siet.ktore2", "0");
        document.getElementById("flashmenu").TPlay("_root.siet");
    }
    if (polozka4 == 1) {
        document.getElementById("flashmenu").TGotoFrame("_root.magnet", 38);
        document.getElementById("flashmenu").SetVariable("_root.magnet.ktore3", "0");
        document.getElementById("flashmenu").TPlay("_root.magnet");
    }
    if (polozka5 == 1) {
        document.getElementById("flashmenu").TGotoFrame("_root.fibris", 33);
        document.getElementById("flashmenu").SetVariable("_root.fibris.ktore4", "0");
        document.getElementById("flashmenu").TPlay("_root.fibris");
    }
}

function show_menu(name, m1, m2, m3, m4)
{
    document.getElementById(name).style.visibility='visible';
    document.getElementById(m1).style.visibility='hidden';
    document.getElementById(m2).style.visibility='hidden';
    document.getElementById(m3).style.visibility='hidden';
    document.getElementById(m4).style.visibility='hidden';
}

function hide_menu()
{
    document.getElementById("m_home").style.visibility='hidden';
    document.getElementById("m_nast").style.visibility='hidden';
    document.getElementById("m_siet").style.visibility='hidden';
    document.getElementById("m_magn").style.visibility='hidden';
    document.getElementById("m_fibr").style.visibility='hidden';
}

function SetCookie(name, value)
{
	document.cookie = name + "=" + escape(value) + "; expires = Wednesday, 01-Dec-2010 00:00:00 GMT";
}

function zmen_menu(name1, name2, name3, name4)
{
	hide_menu();

    document.getElementById(name1).style.visibility='visible';
    document.getElementById(name2).style.visibility='hidden';
    document.getElementById(name3).style.visibility='visible';
    document.getElementById(name4).style.visibility='hidden';
    
    SetCookie("menu_visible", name1);
}

