function cambia_pagina(x) {
	$("#titulo_seccion").fadeOut("slow");
	$("#cuerpo_seccion").fadeOut("slow");
	$("#imagen_fondo2").fadeOut("slow");
	document.location.href='index.asp?ra_id='+x;
	
}


function ventanita3 (URL){
      ventana = window.open(URL,"Recomendar","width=480,height=320,top=70,left=500, scrollbars=NO, menubar=NO,toolbar=NO");
	  ventana.focus();
}


// JavaScript Document
var newsfont = 12; 
function changeFont(id) { 
	if (document.getElementById) { 
			document.getElementById(id).style.fontSize = newsfont+"px"; 
		} else { 
			if (document.layers) { 
				document.layers[id].fontSize = newsfont+"px"; 
			} else { 
				if (document.all) { 
					eval("document.all." + id + ".style.fontSize = \"" + newsfont + "px \""); 
				} 
			} 
		} 
		 
		// esto arregla scroll al utilizar layers 
	//    updateHeight();  
	
} 
// aqui se produce el error 
function larger() { 
    if (newsfont < 20) { 
        newsfont= newsfont +1; 
        changeFont('center-in'); 
    } 
} 

function smaller() { 
    if (newsfont > 10) { 
    newsfont= newsfont -1; 
    changeFont('center-in'); 
    } 
} 

