﻿
function xNavigateToPrint()
{
    if( location.href.indexOf('?') < 0 )
    {
        navigate(location.href + '?print=true');
    }
    else
    {
        navigate(location.href + '&print=true');
    }
}

function xAddSearchProvider()
{
    window.external.AddSearchProvider( "http://www.sscit.net/_SubWebs/Search/search_g.xml" );
    window.external.AddSearchProvider( "http://www.sscit.net/_SubWebs/Search/lsearch_l.xml" );
}

function xPrint()
{
    window.print();
}

function xAddToFavorite()
{
    window.external.AddFavorite(location.href, document.title);
}

function xSendToOther()
{
    var ss = "mailto:?subject=Super_Stranka&Body=";
    ss += "Ahoj\n\r, Nasiel som super stranku, ktoru ti odporucam pozriet.\n\r Stranku najdes na adrese: ";
    ss += location.href;
    ss += "\n\r\n\r Tvoj ........"
    navigate(ss);
}

function xSavePage()
{
    window.document.execCommand("SaveAs", true, document.title + ".html");
}

