	 /* 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 InsertMailLink( linkParams )
	 {
	    document.write ('<A ' + linkParams );
		document.write (' HREF="mai');
        document.write ('lto:service');
        document.write ('&#64;');
        document.write ('prudentia');
		document.write ('.com.au">service');
        document.write ('&#64;');
        document.write ('prudentia');		
        document.write ('.com.au</A>');
	  }	

	 /* Inserts the email address using Javascript to disguise it from Spam Robots */
	 /* Note: only the text for the address is added, but no hyperlink is set up.  */
	 function InsertMailAddr()
	 {
		document.write ('service');
        document.write ('&#64;');
        document.write ('prudentia');		
        document.write ('.com.au');
	  }

