/*
	Force individual pages to load in frameset
	source: http://www.digitalroom.net/index2.html
	date: 2006-02-07
*/

<!--
  if (top.frames.length == 0) {
    document.cookie = "newURL=" + escape(document.URL) + "; path=/;"
    ver = parseInt(navigator.appVersion, 10);
	appName = navigator.appName;
    if ( ((appName == "Netscape") && (ver >= 3)) ||
         ((appName == "Microsoft Internet Explorer") && (ver >= 4)) )
      location.replace("/index.html");
    else
      location = "/index.html";
    };
//-->

/*
	Set browser title to document title
	date: 2006-02-05
*/

<!--
top.document.title = document.title;
//-->


/*
	Solve resizing bug in Netscape 4
	source: Dreamweaver
	date: 2006-01-29
*/

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

/*
	Determine if the browser is Mozilla Firefox
*/
<!--
fireFox = (navigator.appName == 'Netscape' && navigator.appVersion >= '5.0') ? true : false;
//-->


