﻿function hide_element(table){
	var temp = document.getElementById(table);
	temp.style.position = 'absolute';
	temp.style.visibility = 'hidden';
}

function show_element(table){
	var temp = document.getElementById(table);
	temp.style.position = 'relative';
	temp.style.visibility = 'visible';
}
