﻿function resize(s)
{
    var article = document.getElementById("article");
    if(article != null)
    {
        try
        {
            article.style.height = s;
        }
        catch(err)
        {
        
        }
    }
}
function ShowDictionaryDescription(s)
{
    var slApp = document.getElementById('Xaml1');
    slApp.Content.ClientScript.ShowDictionaryDescription(s);
}

function hideShow(p)
{
    var element = document.getElementById(p);
    
    if(element.style.display == "none")
    {
        element.style.display = "block";
    }
    else
    {
        if(element.style.display == "block")
        {
            element.style.display = "none";
        }
    }

}

function openTipsFriend(id)
{
    window.open("tipsfriend.aspx","_blank","location=1,status=1,scrollbars=1,width=100,height=100"); 
}

function OpenGuide(articleId,index)
{
    var slApp = document.getElementById('Xaml1');
    slApp.Content.ClientScript.OpenGuide(articleId,index);
}