 // the example uses style.height but you can use style.width to adjust horizontally

 function expandCreative(containerdivid) {
   document.getElementById(containerdivid).style.height="240px"; // expanded height
 }
 function collapseCreative(containerdivid) {
   document.getElementById(containerdivid).style.height="90px"; // normal height
 }