	document.open()
	document.write("<font color=black size=3><center>You have visited this page " + hitCt + " times with this browser.<\/center>")
	/*
        if (lastVisit != "") {
	document.write("<br><center>Your last visit was " + lastVisit +"<\/center>")
	}
        */
	yourheight = 0
	yourwidth = 0

	yourheight= screen.height
	yourwidth= screen.width

	if (yourheight == "0" || yourwidth == "0"){
	yourheight = 640
	yourwidth = 480
	}

	document.write("<center><font size=3, color=black>Your screen is currently set for " + yourwidth + " x " + yourheight + "<\/center>")

	if (yourheight == "640" || yourwidth == "480") {
	document.write("<br><center><font size=3, color=black>Your screen is not optimal for viewing this page" + "<\/center>")
	document.write("<br><center><font size=3 color=black>Best when viewed at 640 x 800 or higher<\/center>")
	}
	
	if ((navigator.appName == "Netscape") ) {
	document.write("<center><font size=3, color=black>You are using Netscape v" + parseFloat(navigator.appVersion) + "<\/center>" )
	}


	if (navigator.appName == "Microsoft Internet Explorer") {
	document.write("<center><font size=3, color=black>You are using Internet Explorer v" + parseFloat(navigator.appVersion) + " or greater<\/center>" )
	}

	if ( parseInt(navigator.appVersion < 4 ) ) {
	document.write("<center><font size=3, color=red>You should upgrade your browser version. Upgrading will protect you from security holes in earlier versions<\/center>")
        }


	document.close()