
function res_menor(limite_ancho,limite_alto){
	var ancho = screen.width;
	var alto = screen.height;
	
	if(ancho < limite_ancho){
		return true;	
	}else{
		return false;	
	}
	
}
