prueba con esto:
Código HTML:
<script>
function resolucion(valor) {
var w = screen.width;
var h = screen.height;
var cx = screen.width/2;
var cy = screen.height/2;
w = w * valor;
h = h * valor;
cx -= w/2;
cy -= h/2;
window.resizeTo(w, h);
window.moveTo(cx, cy)
self.focus();
}
</script>
en el body de la ventana pon:
onLoad="resolucion(0.75);"
y si quieres ponerle zoom a la pagina usa esto:
Código HTML:
<select name="tamano" onChange="resolucion(this.value)">
<option value="1">100%</option>
<option value="0.75" selected>75%</option>
<option value="0.50">50%</option>
</select>