function openAllWebshop()
{
    top.main.location="ws/webshop.html";
    top.menu.location="ws/menu.html";
}

function openLargeImage(url,height,width)
{
  window.open('/popup.php?title=Bild&img='+url, 'console', "toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,copyhistory=no,scrollbars=no,width="+width+",height="+height);
}

function openTextString(str,height,width)
{
  window.open('/popup.php?title=Bild&txt='+escape(str), 'console', "toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,copyhistory=no,scrollbars=no,width="+width+",height="+height);
}

function updateTopFrame()
{
    var fr = null;
    if (parent.parent.frames)
    {
        fr = parent.parent.frames;
    }
    else if (parent.frames)
    {
        fr = parent.frames;
    }
    if (fr != null)
    {
        for(i=0;i<fr.length;i++)
        {
            if(fr[i].location.href.indexOf('/top2.php5') != -1)
            {
                fr[i].location.href='/top2.php5';
                return;
            }
        }
    }
}

function updateWebshopmenu()
{
    if (parent.parent.menu && parent.parent.menu.location.href.indexOf('ws/menu.html') != -1)
    {
        parent.parent.menu.location = '/ws/menu.html';
    }
}

function openWebshop(page)
{
    openWebshop(page, '');
}

function openWebshop(page, param)
{
    if (top.main.wsmain)
    {
        top.main.wsmain.location="ws/" + page + ".html?nomenu=true&"+param;
    }
    else
    {
        top.main.location="ws/" + page + ".html?nomenu=true&"+param;
    }
}

function openLargeImage(url,height,width)
{
    window.open(url, 'console', "toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,copyhistory=no,scrollbars=no,width="+width+",height="+height);
}

function escapeWebshopMenu()
{
    if (top.menu.location.href.indexOf("ws/menu.html") != -1)
    {
        top.menu.location = 'left2.php';
    }
}
