<!--
var totalH;
var cellH;
ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4))
if (ns4) {
	totalH = innerHeight;
        cellH = totalH - 269;
        if (cellH <= 300) {
            cellH = 300;
        }
        document.write('<img src="./images/spacer.gif" width="1" height="'+cellH+'" border="0">');
}
else {
	totalH = document.body.clientHeight;
        cellH = totalH - 269;
        if (cellH <= 300) {
            cellH = 300;
        }
        document.write('<img src="./images/spacer.gif" width="1" height="'+cellH+'" border="0">');
}
//-->
