var commentBanners = 3;

function AddComment(id){
    window.open("http://www.afkar.co.il/AddComment.asp?articleID="+id,"","width=530, height=400");
}

function showComment(cID){
    if(document.getElementById("Comment"+cID).style.display=="")
    {
        document.getElementById("Comment"+cID).style.display="none";
        hideBannerAt(cID);
    }else{
        document.getElementById("Comment"+cID).style.display="";
        showBannerAt(cID);
    }
}

function showBannerAt(cid){
    if(commentBanners > 0 && commentBanners < 4){
        commentBanners--;
        document.getElementById("Banner"+cid).innerHTML= "<iframe frameborder=\"no\" scrolling=\"no\" width=\"100%\" height=\"100%\" src=\"http://www.afkar.co.il/banner.htm\"></iframe>";
    }
}

function hideBannerAt(cid){
    if(document.getElementById("Banner"+cid).innerHTML != ""){
        commentBanners++;
        document.getElementById("Banner"+cid).innerHTML= "";
    }
}

function SendArticle(articleID){
    window.open("http://www.afkar.co.il/ArticleSendToFriend.asp?articleID="+articleID,"","width=500, height=200, location=0");
}

