function $(id) {
	return document.getElementById(id);
}

function showPol(that) {
	//alert(that.id+'b');
	$(that.id+'b').style.display = 'block';
}

function hidePol(that) {
	$(that.id+'b').style.display = 'none';
}