<!--
function Go(x)
{
 if(x == "nothing")
   {
    document.forms[0].reset();
    document.forms[0].elements[0].blur();
    return;
   }

 else
   {
    document.location.href = x;
    document.forms[0].reset();
    document.forms[0].elements[0].blur();
   }
}


var text1;
var text2;
var text3;

function ems(text1, text2, text3)
{
document.write('<a href="' + 'mailto:' + text1 + '@' + text2 + '.' + text3 + '">' + text1 + '@' + text2 + '.' + text3 + '</a>');
}

//-->

