<html>
<head>
<script type="text/javascript">
<!--
function zoom(whatToZoom) {
if (whatToZoom.style.zoom != 0) {
whatToZoom.style.zoom *= 2;
} else {
whatToZoom.style.zoom = 2;
}
}
//-->
</script>
</head>
<body>
<h1>Frame 1</h1>
Click <a href="javascript:zoom(document.getElementsByTagName('body')[0]);">here</a> to zoom this frame
<br />
Click <a href="javascript:zoom(window.parent.frames['Frame2'].document.getElementsByTagName('body')[0]);">here</a> to zoom Frame 2
</body>
</html>