function supressError() {
return true;
}

var newwindow;
function Go(url) {
newwindow=window.open(url,'eventinfo','toolbar=no,menubar=no,location=no,scrollbars=no,status=no,resizable=yes,width=475,height=300');
if (window.focus) {newwindow.focus()}
}

var name = "bigred";
var address = "redblast.com";
var link = "Email BigRed";
function hidemail() {
document.write('<a class="email" href=mailto:' + name + '@' + address + '>' + link + '</a>');
}
