var min=8;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 11;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 11;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}
function resetFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 11;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = "11px"
   }   
}
function ProtectInfoResume(jobcode) {
var tag1 = "mail";
var tag2 = "to:";
var at = "@";
var email1 = "resumes";
var email2 = "riptidesoftware";
var email3 = ".com";
var subject = "Resume: Riptide Software";
var bcc = "";
var cc1 = "fish" 
var cc2 = "@riptidesoft.com"; 
var body = "";
var ass = "mailto:resumes@riptidesoftware.com?subject="+subject+" "+jobcode; 
window.location = ass;
}

function ProtectInfoResumeImmediate(jobcode) {
var tag1 = "mail";
var tag2 = "to:";
var at = "@";
var email1 = "resumes";
var email2 = "riptidesoftware";
var email3 = ".com";
var subject = "Resume: Riptide Software";
var bcc = "";
var cc1 = "fish" 
var cc2 = "@riptidesoft.com"; 
var body = "";
var ass = "mailto:LT2Openings@Riptidesoftware.com?subject="+subject+" "+jobcode; 
window.location = ass;
}