function mail(domain, user) {
	location = 'mailto:' + user + '@' + domain;
}

function open_paris_2003() {
	var h = 718;
	var w =	614;
	var t =	(screen.height / 2) - (h / 2);
	var l = (screen.width / 2) - (w / 2);
	window.open('/photos/paris-2003/index.html', 'popup', 'height=' + h + ',left=' + l + ',top=' + t + ',width=' + w);
}

function setExternalLinks() {
	if(!document.getElementsByTagName) return; 
	var anchors = document.getElementsByTagName('a');
	for(var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];
		if(anchor.getAttribute('href') && anchor.getAttribute('rel') == 'external') anchor.target = '_blank';
	} 
}