/*
Otervre do noveho nove okno s predanym url
*/
function newwin(url)
{
    wasOpen  = false;
    win = window.open(url, "_blank", "fullscreen=yes, widht=screen.width, height=screen.height, menubar=no, status=no, toolbar=no, resizable=yes, scrollbars=yes");
    return (typeof(win)=='object')?true:false;
}

/*
Otevre nove decorovane okno, tedy s tool bary, status barem, atd.
*/
function newDecoratedWin(url)
{
    wasOpen  = false;
    win = window.open(url, "_blank", "fullscreen=no, widht=screen.width, height=screen.height, menubar=yes, status=yes, toolbar=yes, resizable=yes, scrollbars=yes");
    return (typeof(win)=='object')?true:false;
}
