﻿ function getconfirm() 
        { 
            if (confirm("Are You sure?")==true) 
            return true; 
            else 
            return false; 
        }
        
var min=8;
var max=16;
function increaseFontSize() {
   var p = document.getElementsByTagName('body');
   document.getElementById('ctl00_textBigLink').setAttribute("style","display:none");
   document.getElementById('ctl00_textSmallLink').setAttribute("style","display:block");
   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');
   document.getElementById('ctl00_textBigLink').setAttribute("style","display:block");
   document.getElementById('ctl00_textSmallLink').setAttribute("style","display:none");
   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"
   }   
}

function bookmark()
{
    if(document.all)
    window.external.AddFavorite(location.href,document.title);
    else if(window.sidebar)window.sidebar.addPanel
    (document.title,location.href,'');

}
