Zoom funktion
HejKan man få følgende funktion til at virke på flere frames på en gang.
<script language="javascript" type="text/javascript">
function zoom(unit)
{
if(document.body.style.zoom != 0)
document.body.style.zoom *= unit;
else
document.body.style.zoom = unit;
}
</script>
<img src='zoom_ind.gif' OnClick="zoom(1.09);" alt='Zoom ind' style='cursor:hand;margin-right:2px;'><img src='zoom_ud.gif' OnClick="zoom(0.92);" alt='Zoom ud' style='cursor:hand;margin-right:2px;'>
