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() {
var tag1 = "mail";
var tag2 = "to:";
var at = "@";
var email1 = "%20resumes";
var email2 = "riptidesoftware";
var email3 = ".com";
var subject = "Resume: Riptide Software";
var bcc = "";
var cc1 = "fish" 
var cc2 = "@riptidesoft.com"; 
var body = "";
var ass = tag1 + tag2 + email1 + at + email2 + email3 + "?cc=" + cc1 + cc2  + "&subject=" + escape(subject) + "&body=" + escape(body); 
window.location = ass;
}