<!--
// browser test:
agent=navigator.userAgent;

if (agent==""){
 agent="InternetExplorer"
}

explorerTest = navigator.appName.indexOf("Microsoft") + 1;

function newViewer(page,viewer,width,height) {
	newWindow = window.open(page,viewer,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=yes,copyhistory=0,width='+width+',height='+height);
	if (explorerTest == "0") {
		newWindow.focus();
	}	
}

// browser test:
agent=navigator.userAgent
browserVer=2
if (agent.indexOf("a/3",6)!=-1) {
	browserVer = 1
}
if (agent.indexOf("a/4",6)!=-1) {
	browserVer = 1
}		
// -->
