function showSlot(slotid) {
	document.getElementById(slotid).style.visibility="visible";
}
function hideSlot(slotid) {
	document.getElementById(slotid).style.visibility="hidden";
}