function showPlatform(id) {
	for(i=0;i<=6;i++) {
		if (document.getElementById("plat_"+i)) {
			document.getElementById("plat_"+i).style.display = "none";
		}
	}
	if (document.getElementById("plat_"+id)) {
		document.getElementById("plat_"+id).style.display = "block";
	}else{
		document.getElementById("plat_0").style.display = "block";
	}
}