// JavaScript Document
var browserList=new Array("Firefox","Netscape","MSIE","Opera");

function printSetting(){
	document.writeln("<pre>");
	document.writeln(navigator.appCodeName);
	document.writeln(navigator.appName);
	document.writeln(navigator.appVersion);
	document.writeln(navigator.platform);
	document.writeln(navigator.userAgent);
	document.writeln("</pre>");
}

function getBrowser(){
	if(navigator.userAgent.indexOf("Firefox",0)!=-1)return "Firefox";
	if(navigator.userAgent.indexOf("Netscape",0)!=-1)return "Netscape";
	if(navigator.userAgent.indexOf("Opera",0)!=-1)return "Opera";
	if(navigator.userAgent.indexOf("MSIE",0)!=-1)return "MSIE";
	return "Other";
}

function getElement(id){
	return document.all?document.all[id]:document.getElementById(id);
}