// JavaScript Document
function getURL() {
	var currentURL = document.URL
	var mail_subject = "Adviseo - Take Your Business To The Next Level";
	var mail_body = "Hello,%0A%0AThere's a page at adviseoweb.com that I think you might find interesting.%0A%0AIf you're looking for better positioning, higher placement or making your website more search engine friendly, talk to the professionals at Adviseo - to take your business to the next level.%0A%0AAdviseo is a leader in the area of Search Engine Optimization (SEO).%0A%0AHere's the link to that page:"
document.location.href="mailto:?subject="+mail_subject+"&body="+mail_body+" "+currentURL;	
}