Hola, kahlito.
No se si se podrá hacer con Dreamweaver, pero te dejo este código que te puede servir:
Código PHP:
<html>
<head>
<script>
function centrarCapa(obj) {
an=parseInt(document.getElementById(obj).style.width);
al=parseInt(document.getElementById(obj).style.height);
x=(document.body.clientWidth-an)/2;
y=(document.body.clientHeight-al)/2;
document.getElementById(obj).style.left=x;
document.getElementById(obj).style.top=y;
}
</script>
</head>
<body onLoad="centrarCapa('Layer1')" onResize="centrarCapa('Layer1')">
<div id="Layer1" style="border:1px solid red; position:absolute; width:200px; height:115px; z-index:1"></div>
</body>
</html>
Con esto la capa estará centrada independientemente de la resolución, incluso aunque el usuario cambie el tamaño de la ventana.
Saludos,