function sendmail (mail_type) {
  switch(mail_type) {
  case "tech_sprt" :
   eval('page=window.open\("http://contact.external.hp.com/email/","popup","toolbars=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=670,height=400"\)');
   break;
  case "general" :
   eval('page=window.open\("http://www.hp.com/country/us/eng/contact_us.htm","popup"\)');
   break;
  case "parts_id" :
   document.location="../pid_email.htm";
   break;
  case "parts_store" :
   document.location="http://www.hp.com/buy/parts";
   break;
  default :
      document.location="../email.htm";
  }
}

function printable() {
  eval("printloc = \"http://www.hp.com/cgi-bin/pf-new.cgi?IN="+self.location+"\"");
  location = printloc;
  //location.replace(printloc);    // change by pradip since replace does not go to prvious page.
}
