<!-- HIDE FROM OLD BROWSERS
function sendto(TO,ADDR,DOM,SUBJ) {
     if (!DOM) DOM = "placerelectric.com";
     file = "mailto:" + ADDR;
     subject = "Request for Info";
     if (SUBJ) subject = SUBJ;
     subject = "[PEI] " + 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 call(file) {
  file = file + "dept.htm";
window.open(file,'definitions','width=600,height=600,scrollbars=yes,location=no,left=10,top=10,menubar=no,resizable=yes,toolbar=no,status=no'); 
}

// --> End Hiding