	 /* Inserts the email address using Javascript so as to disguise it from Spam Robots */
	 /* Note: The 'linkParams' is used to add additional parameters to the A tag */
	 function InsertBevMailLink( linkParams )
	 {
	    document.write ('<A ' + linkParams );
		document.write (' HREF="mai');
        document.write ('lto:bev.');
        document.write ('mcmasters@');
        document.write ('ladara');
        document.write ('.com');		
		document.write ('.au">bev.');
        document.write ('mcmasters@');
        document.write ('ladara');		
        document.write ('.com');
        document.write ('.au</A>');		
	  }	

	 function InsertPhillMailLink( linkParams )
	 {
	    document.write ('<A ' + linkParams );
		document.write (' HREF="mai');
        document.write ('lto:phill.');
        document.write ('mcmasters@');
        document.write ('ladara');
        document.write ('.com');		
		document.write ('.au">phill.');
        document.write ('mcmasters@');
        document.write ('ladara');		
        document.write ('.com');
        document.write ('.au</A>');		
	  }	



	  /* Code for mouse-over handling of links on pages. */
      var ns4 = (document.layers)? true:false
      var ie4 = (document.all)? true:false

      if (document.images)
      {							
         aoff = new Image(150,46);
         aoff.src = "images/AboutUs_OFF.gif";
         aon = new Image(150,46);
         aon.src = "images/AboutUs_ON.gif";
   						
         boff = new Image(150,46);
         boff.src = "images/Services_OFF.gif";
         bon = new Image(150,46);
         bon.src = "images/Services_ON.gif";
						
         coff = new Image(150,46);
         coff.src = "images/Products_OFF.gif";
         con = new Image(150,46);
         con.src = "images/Products_ON.gif";
		 
         doff = new Image(150,46);
         doff.src = "images/ContactUs_OFF.gif";
         don = new Image(150,46);
         don.src = "images/ContactUs_ON.gif";

         xoff = new Image(150,46);
         xoff.src = "images/BevMcMastersButton_OFF.gif";
         xon = new Image(150,46);
         xon.src = "images/BevMcMastersButton_ON.gif";			 						

         zoff = new Image(150,46);
         zoff.src = "images/PhillMcMastersButton_OFF.gif";
         zon = new Image(150,46);
         zon.src = "images/PhillMcMastersButton_ON.gif";			 								 			 						
      }

      function imgOn(imgName, StatusComment)
      {
            if (document.images)
            {
                document[imgName].src = eval(imgName + "on.src");       
            }
            window.status=StatusComment;
      }

     function imgOff(imgName)
     {
            if (document.images)
            {
                document[imgName].src = eval(imgName + "off.src");
            }
            window.status="";
     }
