function frames(URL1,URL2)
{
  parent.frames['nav2'].location.href=URL1;
  parent.frames['main'].location.href=URL2;
}

function newwindow(heading,img,text)
{
  var win;
  win=window.open("","","width=790,height=500,resizable=no,titlebar=yes,scrollbars=yes");
  win.moveTo(screen.width / 8, screen.height / 10);
  win.document.open("text/html");
  win.document.write("<head><title>Bri-Mac Engineering Limited</title><link rel=stylesheet type=text/css href=../../main.css></head><body bgcolor=white><h1>" + heading + "</h1><div align=center><img src=" + img + "></div><p>" + text + "</p><div align=center><a href=javascript:window.close()><img src=../../okay22.png border=0 hspace=5>OK</a></div></body>");
  win.focus();
  win.setTimeout("stop()", 7500);
}
