// This routine displays email links while hiding them from webbots
//
// Add the following line to the HEAD section of the page
// <script language="JavaScript" type="text/javascript"  src="/scripts/mailto.js"></script>

// Add the following line where you would like the link/name to appear
// Edit "who_to" and "colour" as required
// <script language="JavaScript" type="text/javascript">print_mail_to_link("who_to","colour")</script> 

var url = "premierstateliner.com.au";

function print_mail_to_link(who,link_colour) { 
document.write("<A HREF=\"mailto"); 
document.write(":" + who + "@"); 
document.write(url + "\">" + "<font color='"+link_colour+"'>");
document.write(who + "@" + url + "<\/font>"+"<\/a>");
}