/**********************************************************************************************************
File: imageTable.js
Author: Joshua Pacheco
Created: 6/11/2002

Function:	Dynamicly position the height and width of the main image table.

**********************************************************************************************************/
function renderPage() {
	return;
	
	if (noSupport)
		return;
	
	if (isNC) {
		return;
	} else if (document.all) {
		winW = document.body.clientWidth;
		winH = document.body.clientHeight;
	} else {
		winW = window.innerWidth - 15;
		winH = window.innerHeight;
		
	}
	
	layOut = document.getElementById("layoutTable").style;
	leftTileCell = document.getElementById("leftTile").style;
	titlePanelCell = document.getElementById("titlePanel").style;
	
	layOut.width = winW;
	titlePanelCell.width = winW;
	avaliableH = winH - 446 + 50;
	
	if (avaliableH > 1) {
		leftTileCell.height = avaliableH;
	}
	
	layOut.visibility = 'visible';
}