if (macNC) {
  var pageWidth;
  var pageHeight;
}
function reloadPageMac() {
	if (window.innerWidth != pageWidth || window.innerHeight != pageHeight) {
		parent.frames['topFrame'].history.go(0);
		parent.frames['bottomFrame'].history.go(0);
		loadContent();
	}
}
function loadContent() {
	if (parent.frames['topFrame'].loaded == true) {
		parent.frames['contentFrame'].history.go(0);
	} else {
		setTimeout('loadContent()',300);
	}
}
function initMac() {
	if (macNC) {
		pageWidth = window.outerWidth;
		pageHeight = window.outerHeight;
	}
}
if (macNC) {
	window.onresize = reloadPageMac;
}