function letra(p){
id=document.getElementById('newsid');
max=22;
min=9;
	if (p==1){
		if(id.style.fontSize) {
	         var s = parseInt(id.style.fontSize.replace("px",""));
	      } else {
	         var s = 12;
	      }
	      if(s!=max) {
	         s += 1;
	      }
	      id.style.fontSize = s+"px";
		  
	}else{
		if(id.style.fontSize) {
	         var s = parseInt(id.style.fontSize.replace("px",""));
	      } else {
	         var s = 12;
	      }
	      if(s!=min) {
	         s -= 1;
	      }
	      id.style.fontSize = s+"px";
	}
	//alert(" "+id.style.fontSize);
}
function popimprimir(id){
	window.open("http://www.gigantesdeguayana.com/imprimir.php?id="+id);
}