function emailLink(sSubject, sBody) {
	var s = sSubject;
	var b = sBody;

	s = s.replace('%TITLE%', document.title)	
	s = s.replace('%LOCATION%', document.location)	
	b = b.replace('%TITLE%', document.title)	
	b = b.replace('%LOCATION%', document.location)	

	window.location = 'mailto:?subject=' + s + '&body=' + b;
}
