// JavaScript Documentfunction swapImgNow (id, hsrc, el) {    el.src  = hsrc;}function swapImg2 (hsrc, el) {	osrc = new image;    	osrc = el.src;//    el.hsrc = hsrc;    el.src  = hsrc;    if (!el.set) {        el.set = true;        el.onmouseout = function () {            el.src = osrc;        }    }}function execSearch(dbpath, query) { 	var emtpyQryAlert = 'Please enter a term to search for.';	if( query.value  == '' ) {		alert(emtpyQryAlert); 		document.forms[0].SRCHqry.focus(); 	} 	else { 		QryVAL = escape(query.value)		idx = QryVAL.indexOf( "zurich" );//		alert("QryVAL> " + QryVAL + "\nidx> " + idx)		if (idx > -1) { QryVAL = "aboutREM" }		if (document.forms[0].BrowserType.value == "Microsoft") {			document.location.href = '/' + dbpath + '/WEBview?SearchView&Query='+QryVAL+'&SearchOrder=4&Start=1&SearchWV=true&SearchFuzzy=true&SearchMax=0&Highlight=1&Count=30'; 		}		else {			document.location.href =  '/' + dbpath + '/WEBview?SearchView&Query='+QryVAL+'&SearchOrder=4&Start=1&SearchWV=true&SearchFuzzy=true&SearchMax=0&Highlight=1&Count=30'; 		}	}} function showLocation( coverage ) {	if ( coverage == "" ) {		document.getElementById("Location").innerHTML = "&nbsp;"	}	else {		document.getElementById("Location").innerHTML = document.getElementById(coverage).innerHTML	}}function showBIO( Bio ) {	if ( Bio == "" ) {		document.getElementById("BioInfo").innerHTML = "&nbsp;"	}	else {		document.getElementById("BioInfo").innerHTML = document.getElementById(Bio).innerHTML	}}function popup() {	window.open("http://remltd.com/quicktour2/main.htm","","height=600,width=780,left=0,top=0");}
