<!-- HIDE FROM OLD BROWSERS
function sendto(TO,ADDR,DOM,SUBJ) {
     if (!DOM) DOM = "auburnrodeo.com";
     file = "mailto:" + ADDR;
     subject = "Request for Info";
     if (SUBJ) subject = SUBJ;
     subject = "[AWWS] " + subject + ", Attn: " + TO;
     message = "&body=Page Title = " + document.title + 
               "&body=URL = " + document.URL +
               "&body=_______________________________________" +
               "&body=  &body=  ";
     file = file + "@" + DOM + "?Subject=" + subject;
     if (TO == "Webmaster") file = file + message;
     window.location = file;
}

function popup(PAGE) {
file = PAGE + ".htm";
newWindow = window.open(file,"help","width=200,height=200,titlebar=no,scrollbars=no,location=no,left=300,top=300,menubar=no,resizable=no,toolbar=no,status=no");
newWindow.focus();
}

// --> End Hiding
