function makePopup(href, type, name)
{
	var types = {
		'authenticity_audio_tour'	: 'width=420,height=450,status=no',
		'email'						: 'width=369,height=400,toolbar=0,status=0,menubar=0,toolbar=0,scrollbars=1,resizable=0'
	};
	
	window.open(href, name, types[type]);
	
	return false;
}

