// This script opens a new browser window and writes
// HTML to display a small window

function calcWin()
{
  window.open('calc.shtml','Calculator','width=700,height=400,status,scrollbars,resizable,screenX=25,screenY=50,left=25,top=50,copyhistory=no');

  // If on Netscape, bring window to front
  if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}