var artno = "1"var bartype = "page"home = "http://philosophy.kent.edu"root = "/journal/"format = root + "_format/"content = root + "_content/"path1 = format + "navframe/"path2 = content + "abstracts/"path3 = content + "articles/"path4 = content + "pdf/"path5 = format + "code/"BIG="big.css"MEDIUM="medium.css"SMALL="small.css"function getItem(x,y) {<!--	if (getItem.arguments.length != 0) {		bartype = getItem.arguments[0];		if (getItem.arguments.length > 1) {			artno =  getItem.arguments[1];    	}    }	if (bartype == "index") {		var list = window.frames["navframe"].document.forms[0].indexChoices;		window.frames["textframe"].location = list.options[list.selectedIndex].value;        }    else {    	parent.navframe.location = path1 + bartype + "bar.php?artno=" + artno + "&pagetype=bar";		if (bartype != "pdf") {			parent.textframe.location = content + bartype + ".php?artno=" + artno + "&pagetype=" + bartype;		}		else {			parent.textframe.location = path4 + artno + ".pdf";		}  	}//-->}<!--if(document.layers){ //NS 4x or less   if((navigator.appVersion.indexOf("Mac")!= -1)){     // Mac Pre V6 Netscape gets Big CSSdocument.write("<link rel='stylesheet' href='" + path5 + BIG + "' type='text/css'>");   }else{     // Windows Pre V6 Netscape gets Small CSSdocument.write("<link rel='stylesheet' href='" + path5 + SMALL + "' type='text/css'>");   }}else{ //IE or NS6+   if((navigator.appVersion.indexOf("Mac")!= -1)){      if(parseInt(navigator.appVersion.charAt(22)) < 5){         // Mac Pre V5 IE gets Big CSSdocument.write("<link rel='stylesheet' href='" + path5 + BIG + "' type='text/css'>")      }else{         // Mac Post V5 IE gets Med CSSdocument.write("<link rel='stylesheet' href='" + path5 + MEDIUM + "' type='text/css'>")      }   }else{     // Windows IE gets Med CSSdocument.write("<link rel='stylesheet' href='" + path5 + MEDIUM + "' type='text/css'>");   }}//-->