﻿/// <reference name="MicrosoftAjax.js"/>
/// <reference name="jquery-1.3.2.min-vsdoc.js"/>
/*---------------------Default.aspx methods---------------------------------------*/
var articleTag;
function growArticle(location) {
    //Get the Div tag and the GUid from the Div Tag
    articleTag = $get(location);
    YellowstoneDermatology.Services.NewsService.ExtendedArticle(location, OnArticleSuccess, OnArticleError);
}
function collapseArticle(location) {
    //Get the Div tag and the GUid from the Div Tag
    articleTag = $get(location);
    YellowstoneDermatology.Services.NewsService.CollapsedArticle(location, OnArticleSuccess, OnArticleError);
}
function OnArticleSuccess(e) {

    /*$("#123").animate({ height: 'auto'}, 1000);*/
    articleTag.style.height = "auto";
    articleTag.innerHTML = e;
}
function OnArticleError(error) {
    alert(error._message);
}

	
