function resizeTable() {
	if(document.body.clientWidth > 800 && document.body.clientWidth < 1024) {
		document.getElementById('wrapper').width = document.body.clientWidth;
	} else {
		if(document.body.clientWidth <= 800) {
			document.getElementById('wrapper').width = 760;
		}
		
		if(document.body.clientWidth >= 1024) {
			document.getElementById('wrapper').width = 984;
		}
	}
}