// JavaScript Document
<!--
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(URL, width, heigth)
 {
   var width = width;
   var heigth = heigth;
   var space_left = (screen.availWidth - width) / 2;
   var space_top = (screen.availHeight - heigth) / 2;
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height=" +heigth+",left="+space_left+",top="+space_top+"');");
 }
// -->