


function teamphotoclick(fn, ln, position, email, photo, photow, photoh) {

	var div = document.getElementById('teaminfo');

	var buf = '';
	buf += '<div width="'+photow+'" style="width:'+photow+'px; text-align:left;">';
	buf += '<img id="team_photo" src="'+photo+'" width="'+photow+'" height="'+photoh+'" border="0">';
	buf += '<br>';
	buf += '<b>'+fn+' '+ln+'</b>';
	buf += '<br>';
	buf += position;
	buf += '<br>';
	buf += '<a href="mailto:'+email+'">'+email+'</a>';

	div.innerHTML = buf;

	document.getElementById('team_photo').src = photo;
}



function teamphotoover(photohref) {
	team_preload_photo(photohref);
}



function team_preload_photo(href) {
	if(!window.team_preload_photos) window.team_preload_photos = new Array();
	var idx = window.team_preload_photos.length;

	for(var i=0; i<idx; ++i) {
		if(window.team_preload_photos[i].src == href) return;
	}
	window.team_preload_photos[idx] = new Image();
	window.team_preload_photos[idx].src = href;
}







