function setTableHeight() {
	var innertablewidth = 927;
	var innertableheight = 645;
	
	// Width
	/*var w = self.screen.availWidth;
	var x = Math.round((w-innertablewidth) / 2);

	// Height
	var h = self.screen.availHeight;
	var y = Math.round((h-innertableheight) / 2);
	
	if(NS4){
		innertable_id.moveTo(x, y);
	}
	if(IE4||NS6){
		innertable_id.style.left = x + 'px';
		innertable_id.style.top = y + 'px';
	}*/
	
	outertable_id.style.height = self.screen.availHeight + 'px';
}

function JumpToContent() {
	document.location.hash = 'content' + JumpToContent_id;
}

JumpToContent();