var min=10;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}
document.write("<table width=100% height=100% border=0 cellpadding=0 cellspacing=0 bgcolor=#283E6D> <tr> <td height=28 align=left valign=top><table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr> <td align=right valign=middle class=toplinks><font color=#ffffff face=Verdana, Geneva, sans-serif size=1px> Text Size</font><a href=javascript:decreaseFontSize(); alt=Jain University tooltip=Decrease Text Size> - </a> <a href=javascript:increaseFontSize(); alt=Jain University tooltip=Increase Text Size>+</a> <span class=toplinks>|</span> <a href=Search.html class=toplinks title=Search>Search</a> <span class=toplinks>|</span> <a href=atoz.htm class=toplinks title=A-Z>A-Z</a> <span class=toplinks>|</span> <a href=calendar.htm class=toplinks title=Calendar>Calendar</a> <span class=toplinks>|</span> <a href=http://www.jgi.ac.in/Careers.htm class=toplinks title=Career With Us target=_blank>Career With Us</a> <span class=toplinks>|</span> <a href=communication.htm#dir class=toplinks title=Directions>Directions</a> <span class=toplinks>|</span> <a href=siteMap.htm class=toplinks title=Site Map>Site Map</a> <span class=toplinks>|</span> <a href=contactUs.htm class=toplinks title=Contact Us>Contact Us</a></td> </tr> </table></td> </tr> <tr> <td height=80 align=left valign=top><table width=100% height=100% border=0 cellpadding=0 cellspacing=0> <tr> <td width=21>&nbsp;</td> <td width=86 align=left valign=middle><a href=http://www.jgi.ac.in target=blank><img src=images/logo.gif width=75 height=73 border=0></a></td> <td align=left valign=middle><a href=index.html><img src=images/heading.gif alt=JAIN INTERNATIONAL RESIDENTIAL SCHOOL title=JAIN INTERNATIONAL RESIDENTIAL SCHOOL width=639 height=29 border=0></a></td> </tr> </table></td> </tr> </table>");