﻿//Expand content on HTML control
function ExpandContent() {
    var buttonExpand = parent.document.getElementById("ButtonExpand");
    var expandableArea = parent.document.getElementById("ExpandableArea");
    buttonExpand.style.display = 'none';
    expandableArea.style.display = 'block';
}