/*
  File: index.js
  Author: Thought by Design
  Created: august 15, 2003

  Copyright (c), 2003, Call Center Careers. All rights reserved.

  Modified:

    RLA - Creation and initial definition.
*/

	var isNav = false;
	if (parseInt(navigator.appVersion) >= 4) {
		if (navigator.appName == "Netscape") {
			isNav = true;
		} // if
	} // if

	function handleResize() {
		location.reload();
		return false;
	} // handleResize()

	if (isNav) {
		window.captureEvents(Event.RESIZE);
		window.onresize = handleResize;
	} // if
