<!--
var newWin; 
//browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
function imgSwitch(imgName, imageNumber){
	document.images[imgName].src =  "image/links_" + imageNumber + ".gif"
}
function openLocalIndex() {
        HOSTBASE = location.host;
        DOCBASE = returnBASE();
        INDICES = "&IDX=0.0.0";
        TMPLATE = "template=index_2.html"
        USERTEMPLATE = "/servlet/redirect?" + TMPLATE + "&SID=" + "&BASE=" + DOCBASE + "&UID=SWEDEN";
        var URL = "http://" + HOSTBASE + USERTEMPLATE + INDICES;
        document.location = URL;
}
function openWin(URL, width, height, scroll, resize, TITLE) {
    if (URL != "") { 
		// supply some default values
		if (width == "") 	{	width = 600		}
		if (height == "") 	{	height = 460	}
		if (scroll == "" || scroll == null ) { scroll = 1 }
	    if (resize == "" || resize == null ) { resize = 0 }
		if (TITLE == "") 	{	TITLE = 'PLURALISMAIN'	}
		mainWinParams = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1' + scroll + ',resizable=' + resize + ',width=' + width + ',height=' + height;
		var mainWindow = window.open(URL, TITLE, mainWinParams);
		mainWindow.focus();
    }
    //return false;
}
function openEXTWin2(URL,Width,Height) {
	window.open(URL,'NEWEXT','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=' + Width + ',height=' + Height);
}
<!-- same as above but no statusbar -->
function openEXTWin2b(URL,Width,Height) {
	window.open(URL,'NEWEXT','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + Width + ',height=' + Height);
}
var DEFINEisParent = true 
//-->