function select_plan(id) {

	document.getElementById(id).style.cursor = "pointer";
	document.getElementById(id).style.backgroundColor = "#F5F5EA";
	return true;
}
function unselect_plan(id) {

	document.getElementById(id).style.backgroundColor = "";
}
function plan(id) {

	location.href = '/plan.php?id='+id;
}
