function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = 14+"px"
	  p[i].style.lineHeight = 22+"px"
   }
}
function increaseFontSize1() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = 16+"px"
	   p[i].style.lineHeight = 25+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++)   { 
         p[i].style.fontSize = 12+"px"
		  p[i].style.lineHeight = 20+"px"
   } 
  } 
  function increaseFontSize() {
   var p = document.getElementsByTagName('td');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = 14+"px"
	  p[i].style.lineHeight = 22+"px"
   }
}
function increaseFontSize1() {
   var p = document.getElementsByTagName('td');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = 16+"px"
	   p[i].style.lineHeight = 25+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('td');
   for(i=0;i<p.length;i++)   { 
         p[i].style.fontSize = 12+"px"
		  p[i].style.lineHeight = 20+"px"
   } 
  } 
  var isReady = true;
function doSaveAs(){
	if (document.execCommand){
		if (isReady){document.execCommand("SaveAs",false,'medindianews.htm');}
	}else{
		alert('Feature available only in Internet Exlorer 4.0 and later.');
	}
}
 