function printpage() {
	window.print();  
}

function jsMailThisUrl(topic)
{
pageTitle=document.title;
endOfTopic = pageTitle.indexOf(' - Lead On, Australia')
if (endOfTopic!=-1){
	topic = pageTitle.substring(0,endOfTopic)
} else {
	topic = "About Lead On"
}
var email_subject = 'Lead On Web Page Link - '+topic;
var page_url=window.location.href;
var email_body = 'Hi there,\r\nI\'ve found some information on the Lead On Website which may be of interest to you.\r\n\r\nTopic: '+topic+'\r\nURL: '+page_url;
window.location = 'mailto:?subject=' +
escape( email_subject ) + '&body=' +
escape( email_body + '\n\n');
}
