

<!-- //

// BROWSER DETECTION
	IE4 = (document.all) ? 1 : 0; NS4 = (document.layers) ? 1 : 0; ver4 = (IE4 || NS4) ? 1 : 0;

// NS4 BROWSER SAFETY
	if (document.layers) {origWidth = innerWidth; origHeight = innerHeight; onresize = reDo;}
	function reDo() {if (innerWidth != origWidth || innerHeight != origHeight) location.reload();}
// POPUP WINDOW CONTROLS
	function popcustom(file,title,x,y,sx,sy) {
		popup = window.open(file,title,'width=' + x + ',height=' + y + ',screenX=' + sx + ',screenY=' + sy + '');
		if (document.images) {popup.focus();}
	}
	function popblank(file) {
		popup = window.open(file,'blank','width=620,height=420,menubar,toolbar,location,status,resizable,scrollbars,screenX=30,screenY=30');
		if (document.images) {popup.focus();}
	}


//-->