﻿function ShowSmallContent(id, innerid) {
    var div = document.getElementById(id);
    var ghost = document.getElementById(innerid);
    if (div.lastChild.data == '+') {
        div.lastChild.data = "-"
        ghost.className = "";
    }
    else {
        div.lastChild.data = "+"
        ghost.className = "show";
    }
}