﻿/* JS-File for custom JavaScript */


var current_table = "";


function show(table, stand) {
	if (current_table != "") {
		document.getElementById(current_table).style.display = 'none';
	}
	current_table = table;
	document.getElementById(table).style.display = 'block';
	document.getElementById('standplan').src = stand + '_' + table + '.gif';
}

function hide(table, stand) {
	document.getElementById(table).style.display = 'none';
	document.getElementById('standplan').src = stand + '.jpg';
}

