var emailaddr = 'donvo' + 'gln' + 'd@g' + 'mai' + 'l.c' + 'om';
function mailto(subj, title, txt) {
	if (subj && txt) {
		document.writeln('<a href="mailto:' + emailaddr + '?subject=' + subj + '" ' + ' title="' + title + '">' + txt + '</a>');
	} else {
		document.writeln('<a href="mailto:' + emailaddr + '">' + emailaddr + '</a>');
	}
}
function currentPage() {
	as = document.getElementsByTagName('A');
	for (i=0; i<as.length; i++) {
		if (as[i].href == window.location.href && as[i].innerHTML != 'Don Vogl' && as[i].innerHTML != 'Fine Art Collection') {
			as[i].style.color = 'white';
			as[i].style.backgroundColor = 'black';
		}
	}
}
window.onload = currentPage; 
