<!--
if (top.frames.length > 0) top.location.href = self.location;

function GOTO (select) {
   location.href = "/"+select.options[select.options.selectedIndex].value;
   select.form.reset();
}

function em(coded, text, subject) 
	{
	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
	shift=coded.length;
	link="";
	for (i=0; i<coded.length; i++)
		{
		if (cipher.indexOf(coded.charAt(i)) == -1)
			{
			ltr=coded.charAt(i);
			link+=ltr;
			}
		else 
			{
			ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
			link+=cipher.charAt(ltr);
			}
	}
	if (text == null) text = link;
	if (subject == null) subject = ""; else subject = "?subject="+subject;
	document.write("<a href='mailto:"+link+""+subject+"'>"+text+"</a>");
	}
//-->

