// To compensate for the major font size differences between Netscape and IE, this script determines which platform a user is browsing on, and assigns the corresponding stylesheet 
NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);
IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
isMac = (navigator.appVersion.indexOf("Mac") != -1);


if (NS4) {
	document.write('<LINK REL=stylesheet HREF="http://groups.haas.berkeley.edu/execmba/stylesheets/berkeley_netscape_style.css" TYPE="text/css" media="screen">'); 
	}
else {		
	document.write('<LINK REL=stylesheet HREF="http://groups.haas.berkeley.edu/execmba/stylesheets/berkeley_percent_style.css" TYPE="text/css" media="screen">'); 
	}
		
		
// Netscape Resize Fix
if (document.layers) {
	widthCheck = window.innerWidth
	heightCheck = window.innerHeight
	window.onResize = resizeFix
}
function resizeFix() {
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	document.location.href = document.location.href
}