//This method of browser detection is fairly reliable, using the userAgent property//and could be used for all browser detectionsvar detect = navigator.userAgent.toLowerCase();var browser, place;function checkIt(string){	place = detect.indexOf(string) + 1;	return place;}if (checkIt("opera") != 0) {	browser = "Opera"}else if (checkIt("icab") != 0) {	brower = "iCab"}//However, here I use a variety of properties and tests to find the browsers I know have trouble with //my CSS version of resumeif ( (navigator.appName.indexOf("Netscape") != -1) && (parseInt(navigator.appVersion) <= 4) ){	self.location="KenRes.html"}else if ( browser=="Opera"){	self.location="KenRes.html"}else if ( browser=="iCab" ){	if (parseFloat(navigator.vendorSub) <= 2.8){		self.location="KenRes.html"	}}