function redirectPage(url) {
	window.open(url,'');
}
function showDetails(show) {
	document.getElementById('contracted').style.display = (show) ? 'none' : 'block';
	document.getElementById('expanded').style.display = (show) ? 'block' : 'none';
}