function expandCreative(ContainerDivID) {
   document.getElementById(ContainerDivID).style.height = "250px"; // expanded height
}
function collapseCreative(ContainerDivID) {
   document.getElementById(ContainerDivID).style.height = "40px"; // normal height
}