function format(name) {
	name =  name.toLowerCase();
	var regex = /\s/;
	name = name.replace(regex, '_');
	return name;
}

function showBio(name, custom) {
	var customURL = ''
	if (custom) {
		customURL = '&custom=1'
	}	
	
	var win = window.open("Bios/showBios.asp?name="+name+customURL, "staff", ",,,,menubar,scrollbars,,width=340,height=230,top=20,left=300");
	win.focus()
}

function showAvatar(name, custom) {
	var bioImgPath = 'Bios/img/';
	var sizeAtts = ' width="100" height="110" ';
	var fname = format(name);
	var text = '<a href="javascript:showBio(\'' + name +'\','+custom+');">' +
			'<img ' +
					'src="' + bioImgPath + fname + '.jpg" ' +
					'alt="' + name + '" ' +
					sizeAtts +
					'border="0" ' +
				'/>' +
			'<div class="name">' +
				name +
			'</div>' +               
		'</a>';
	document.write(text);
}
