// check whether page is loading from the Web or from my development environment
// and set the "home page" link in the menu accordingly

if (document.URL.indexOf("lacchin.co.uk")>0 || document.URL.indexOf("rula.pwp.blueyonder.co.uk")>0)
 {
  document.writeln('<a href="http://rula.pwp.blueyonder.co.uk" target="_top"');
 }
else
 {
  document.writeln('<a href="index.htm" target="_top"');
 }
document.writeln('onMouseOver="rollover(\'menu_home\');" onMouseOut="rollout(\'menu_home\');">');
document.writeln('<img src="gx_blue1ptr.jpg" NAME="menu_home" height=12 width=10 border=0');
document.writeln('alt="Home Page"><b>Home\&nbsp;Page</b></a>\&nbsp;<br>');
document.writeln('<script type="text/javascript">');
document.writeln('setrollover("gx_red1ptr.jpg");');
document.writeln('</script>');