toma un ejemplo, te lo he echo ahora mismo:
Código HTML:
<html>
<head>
<script type="text/javascript">
function rdm(id,width,height)
{
id=document.getElementById(id);
id.style.width=width + "px";
id.style.height=height + "px";
}
</script>
</head>
<body>
<div id="capa" style="border:1px solid #000000; width:100px; height: 100px;">
eoeoeoe
</div>
<a href="#" onclick="rdm('capa','300','400')">RDM</a>
</body>
</html>
solo le tienes que pasar el id, ancho y alto, asi lo puedes re-utilizar en varias capas.
;)