/* 
 * Run at startup
 */
var textOffset = 100;

if (window.screen && window.screen.width){
	if (window.screen){
		if (window.screen.width >= 1000){textOffset = 100;}	
		else{
			document.write('<STYLE TYPE="text/css">BODY { MARGIN-LEFT: 26px }</STYLE>');
			textOffset = 24;
		}
	}
}
/*
 * Other functions
 */
function PrintDoc() { window.print(); }

function SetBackgroundFilter() {
	if (document.all && document.all.DIVBG && document.all.DIVBG.style) {
		document.all.DIVBG.style.left = textOffset;
		document.all.DIVBG.style.top = 146;
		document.all.DIVBG.style.width = 696;
		if (document.all.DIVALL && document.all.DIVALL.scrollHeight) {
			document.all.DIVBG.style.height = document.all.DIVALL.scrollHeight - 30;
		}else{
			document.all.DIVBG.style.height = 1000;
		}
	}
}
