<!--

function UnCryptMailto(s) {
	var n = 0;
	var r = "";
	for (var i=0; i<s.length; i++) {
		n = s.charCodeAt(i);
		if(n >= 8364) {
			n = 128;
		}
		r += String.fromCharCode(n - 1);
	}
	return r;
}

function linkTo_UnCryptMailto(s) {
	location.href=UnCryptMailto(s);
}

function popup(mylink, windowname) {
	params  = 'width='+screen.width;
	params += ', height='+screen.height;
	params += ', top=0, left=0'
	params += ', fullscreen=yes';
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	href=mylink;
	else
	href=mylink.href;
	window.open(href, windowname, params);
	return false;
}

function toggleDiv(layerName1) {
	if (document.getElementById(layerName1).style.display == "inline") {
		document.getElementById(layerName1).style.display = "none";
	} else {
		document.getElementById(layerName1).style.display = "inline";
	}
}

//-->

