var origHeight, origWidth;
var coll = "";
var styleObj = "";
var ns6close = "')";
var isMac, isPC
if (navigator.platform.indexOf('Mac') != -1) {
	isMac = true
} else {
	isPC = true
}
if (document.layers) {
	origWidth = innerWidth;
    origHeight = innerHeight;
} else if (document.all) {
	coll = "all.";
	styleObj = ".style";
} else if (document.getElementById) {
	coll = "getElementById('";
	styleObj = "').style";
}
function NetscapeFix() {
      if (innerWidth != origWidth || innerHeight != origHeight) {
		origWidth = innerWidth;
		origHeight = innerHeight;
		location.reload()
		return false
	}
}
if (document.layers) {
	window.captureEvents(Event.RESIZE)
	window.onresize = NetscapeFix
}
function fixLayer(lname) {
	var fixedLayer
	fixedLayer = eval("document." + coll + lname + styleObj);
	return fixedLayer;
}
function fixImg(imageTitle,lName) {
	if (document.layers) {
		fixedImage = eval("document." + lName + ".document." + imageTitle);
	} else if (document.all || document.getElementById) {
		fixedImage = eval("document." + imageTitle);
	}
	return fixedImage;
}