Add this script in the head tag of the window that displays the Access app:
Code:
<script type="text/javascript">
top.window.moveTo(0,0);
if (document.all || document.layers|| document.getElementById)
top.window.resizeTo(screen.availWidth,screen.availHeight);
</script>
And in the page that's calling the page above set the link target to "_blank":
Code:
<a href="accessPage.htm" target="_blank">new window</a>
This will resize your access page to fit the screen no matter what screen resolution user uses. Browsers supported: IE 5+ , Opera 9 & FF 2
I hope this is what you want.