// This section of the script copyright www.maxxblade.co.uk
// Browser and Window Height Check
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;
function winHei(){ return (ns4||ns6)?window.innerHeight:document.body.clientHeight; }

// This section of the script copyright www.brilliantweb.co.za
// Make Content Box Fit Window
var displayheight = winHei();
var header_1 = 104;
var footer = 20;
var extraspace =49;
var main = displayheight - header_1 - footer - extraspace;
document.write('<style><!-- #main { height: ' + main + 'px } --> </style>');
