/* ©2001 Copyright(C) iArchitects, All Rights Reserved */
var isNav, isNav6, isIE, isMac; 	//Global Vars
var agt = navigator.userAgent.toLowerCase(); 
var isMac    = (agt.indexOf("mac") != -1);

var appname= navigator.appName;
var appversion = navigator.appVersion;
var majorver = appversion.substring(0, 1);
var coll = "";
var styleObj = "";

//alert('This browser is '+appname+', version '+majorver);

if ( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) {
	isIE = true;
} else if ( (appname == "Netscape") && (majorver >= 5 ) ) { 
	isNav6 = true;
} else if ( (appname == "Netscape") && ( majorver >= 3 ) ) {
	isNav = true;
} else {} //do nothing

if (isIE) {
	coll = "all.";
	styleObj = ".style";
}

function handleResize() {
	window.location.reload();
	return false;
}
if (isNav) {
	window.captureEvents(Event.RESIZE);
	window.onResize = handleResize;
}
if (isNav6) {
	window.captureEvents(Event.RESIZE);
	window.onResize = handleResize;
}

