// JavaScript Document
 function expand(wid,heigt,id) {
document.getElementById(id).height = heigt;
document.getElementById(id).width = wid;
 }
