<!-- This is Script For A+ & A- -->

var min=12;
var max=28;
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 = 12;
      }
      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 = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}
//This For Pop Up With ScrollBar
function WinOpen_withScroll(pageTitle,_width,_height,leftcor,topcor,pageSRC)
{
	window.open( pageSRC , pageTitle, "scrollbars=1,statusbar=no,menubar=no,toolbar=no,resize=null,top=" + topcor + ",left=" + leftcor + ",width=" + _width + ",height="+_height ).focus();
}
//This For Pop Up Without ScrollBar
function WinOpenFull(pageTitle,_width,_height,leftcor,topcor,pageSRC)
{
	window.open( pageSRC , pageTitle, "scrollbars=0,statusbar=no,menubar=no,toolbar=no,resizable=no,top=" + topcor + ",left=" + leftcor + ",width=" + _width + ",height="+_height ).focus();
}


<!-- This is Script For A+ & A- -->


<!-- This is Script polling- -->
function VotePoll()
	{

	    var l_votes = "" ;
	    var Myobj=document.getElementsByName("PollGB");

	    //alert(Myobj(0).option.length);
		for(i=0;i<Myobj.length;i++)
		{
			  if(Myobj[i].checked)
			  {
			      l_votes = Myobj[i].value;
			      //alert(l_votes);
			  }
		}
		if (l_votes == "")
		{
			alert("Please select an option!") ;
			return ;
		}
		l_id = document.getElementById("PollID").value;
		window.open('http://origin.ndtv.com/poll/checkcookie.asp?options='+l_votes+'&id='+l_id,"Vote","width=340,height=270,resizable=no,scrollbars=yes,menubar=no,status=no");
	}

<!-- This is Script polling- -->
