function resize(element, w, h, pw, ph){
  element.style.width = w+"px";
  element.style.height = h+"px";
  element.style.margin = ph+"px "+pw+"px";
  return true;
}
