<!--

function changeBgColor(newBgColor) {
	if(document.layers) {
	//thisbrowser="NN4";
		document.layers["maincontent"].bgColor=newBgColor;
	}
	if(document.all) {
	//thisbrowser="ie"
		document.all.maincontent.style.backgroundColor=newBgColor;
	}
	if(!document.all && document.getElementById) {
	//thisbrowser="NN6";
		document.getElementById("maincontent").style.backgroundColor=newBgColor;
	}
}

function changeFgColor(newFgColor) {
	if(document.layers) {
	//thisbrowser="NN4";
		document.layers["maincontent"].color=newFgColor;
	}
	if(document.all) {
	//thisbrowser="ie"
		document.all.maincontent.style.color=newFgColor;
	}
	if(!document.all && document.getElementById) {
	//thisbrowser="NN6";
		document.getElementById("maincontent").style.color=newFgColor;
	}
}

function changeFontSize(newFontSize) {
	if(document.layers) {
	//thisbrowser="NN4";
		document.layers["maincontent"].fontSize=newFontSize;
	}
	if(document.all) {
	//thisbrowser="ie"
		document.all.maincontent.style.fontSize=newFontSize;
	}
	if(!document.all && document.getElementById) {
	//thisbrowser="NN6";
		document.getElementById("maincontent").style.fontSize=newFontSize;
	}
}

function showStatus(text) {
  window.setTimeout('window.status="' + text + '"', 1);
}

function breakout() {
  if (top.location!=location) {
    top.location.href=document.location.href;
  }
}

//-->
