var nonIEtxt = '<font color="maroon"><i>Non-Tested  Browser Detected</i></font><br>Non Microsoft Windows And Pre 2000<br>Operating Systems And Browsers<br>May Not Function Properly.'
var nonIENote = true
function navNotices() {
	if (nonIENote) {;
		document.getElementById("nonWin").innerHTML = '<font color="red"><b>'+nonIEtxt+'</b></font>';
		nonIENote = false;
	}
	else {
		document.getElementById("nonWin").innerHTML = '<font color="blue"><b>'+nonIEtxt+'</b></font>';
		nonIENote = true;
	}
	setTimeout("navNotices()",1000)
}
if (!browserType.isIE) {;navNotices();}
																									/*	Notes On This File:
																										One of the functions of this file is to set the local date and time from the the client computer 
																										instead of the arizona date/time from the host.
																										it takes the place of openSession.asp
																										
																										This file sets some layout proportion variables but does no visitor tracking nor sets 
																										any cookies on the visitor's computer.
																										If the visitor goes no further the he or she leaves neither track nor trail.		 */
var thisDate = new Date();
var sessionDate = (thisDate.getMonth()+1) + "/" + thisDate.getDate() + "/" + thisDate.getFullYear();
var thisTime = new Date();
var thisHour = thisTime.getHours();
var AMPM = " AM"
	if (thisHour>11) {;AMPM=" PM";}
	if (thisHour>12) {;thisHour = thisHour-12;}
var thisMinute = thisTime.getMinutes();
	if (thisMinute<10) {;thisMinute = "0" + thisMinute;}
var sessionStartTime = thisHour + ":" + thisMinute + AMPM;
																									/*	screen formating variables
																										user system specific screen and diplay layout information set system side Session data, see form below	*/
var adjFactor = screen.width/1280;
var winX=screen.width*1;
var menuWd = Math.round(160 * adjFactor);
var posLeft = Math.round(130	* adjFactor);
var posLeft2 = Math.round(50	* adjFactor);
var tableWid01 = Math.round(1100 * adjFactor);
var tableWid02 = Math.round(1200 * adjFactor);
var row1Ht = Math.round(20 * adjFactor);
var row2Ht = Math.round(80 * adjFactor);
var row3Ht = Math.round(15 * adjFactor);
																									/*	This information is stored in the form to be pasted on to the next file.
																										user system specific screen and diplay layout information set system side Session data, 
																										see openSession2.asp, Processing Step #2 for when user side vbs variable sessionStartTime is set ref.0005a
																										see openSession2.asp, Processing Step #4 for when server side session("sessionStartTime") is set ref.0005b	*/
	document.all.sessionData.sessionDate.value = sessionDate
	document.all.sessionData.sessionStartTime.value = sessionStartTime
																									/*	user system specific screen and diplay layout information set system side Session data, 
																										see openSession2.asp, Processing Step #2 for when user side vbs variable sessionStartTime is set ref.0005a
																										see openSession2.asp, Processing Step #4 for when server side session("sessionStartTime is set ref.0005b	*/
	document.all.sessionData.adjFactor.value = adjFactor
	document.all.sessionData.winX.value = winX
	document.all.sessionData.sessionStartTime.value = sessionStartTime
	document.all.sessionData.menuWd.value = menuWd
	document.all.sessionData.posLeft.value = posLeft
	document.all.sessionData.posLeft2.value = posLeft2
	document.all.sessionData.tableWid01.value = tableWid01
	document.all.sessionData.tableWid02.value = tableWid02
	document.all.sessionData.row1Ht.value = row1Ht
	document.all.sessionData.row2Ht.value = row2Ht
	document.all.sessionData.row3Ht.value = row3Ht
