self.name="main";

function gotoddl(list) {
	if(list.options[list.selectedIndex].value)
		location.href = list.options[list.selectedIndex].value;
}

function createWindow(url,name,size) { wind = window.open(url,name,size); }

function checkNS() {
	var browser = navigator.appName;
	var version = parseInt(navigator.appVersion);
	if (browser == "Netscape" && version <= 4) return true
	else return false;
}
	
/**
 * resize.js 0.3 970811
 * by gary smith
 * js component for "reloading page onResize"
 */

if(!window.saveInnerWidth) {
  window.onresize = resizeIt;
  window.saveInnerWidth = window.innerWidth;
  window.saveInnerHeight = window.innerHeight;
}

function resizeIt() {
    if (saveInnerWidth < window.innerWidth || 
        saveInnerWidth > window.innerWidth || 
        saveInnerHeight > window.innerHeight || 
        saveInnerHeight < window.innerHeight ) 
    {
        window.history.go(0);
    }
}
