//-----------------------------------------------------------
// Function set for Internal Functions.
//
// Created: Sat 23rd January 1999, by Simon J Fox
//
// Updated      Initials        Comments
//--------      --------        --------
//
//
//-----------------------------------------------------------

function DoLayout()
{
    with (Math)
	{
		var dw = document.body.clientWidth;
		var margin = 20;
		document.getElementById("MainTable").style.width = dw;
		document.getElementById("BodyTable").style.width = dw;
		document.getElementById("Body1").style.width = dw * 0.15;
		document.getElementById("Body2").style.width = dw * 0.05;
		document.getElementById("Body3").style.width = dw * 0.8;
		document.getElementById("StrapLine").style.left = dw - parseInt(document.getElementById("StrapLine").style.width) - margin;
		document.getElementById("MainBody").style.visibility = "visible";
	}
}
