// attempt to defeat e-mail gathering spam robots
function gomail(x1) {
    var x2 = "@";
    var x3 = "marketinsight";
    var x4 = "corp";
    var x5 = "com";
    self.location.href = "mailto:" + x1 + x2 + x3 + x4 + "." + x5;
}

function gomail2(x1) {
    var x2 = "@";
    var x3 = "myproduct";
    var x4 = "advisor";
    var x5 = "com";
    self.location.href = "mailto:" + x1 + x2 + x3 + x4 + "." + x5;
}