function phone(id) {
	window.open ('/phone.php?id='+id, 'phone'+id, 'width=400,height=220,status=0,toolbar=0');
}

function vote(id) {
	window.open ('/vote.php?id='+id+'&bad', 'vote'+id, 'width=400,height=220,status=0,toolbar=0');
}

function show_bad(id, to_hide) {

	var el = document.getElementById('bad'+id);
	el.style.display = 'block';
	to_hide.style.display = 'none';
}