// //////////////////////////////////////////////////////////////////////////////////////
function buscar(){
	if ($('#txt').attr('value') != ''){
		document.location = 'busqueda.asp?txt=' + $('#txt').attr('value');
	}
}
// //////////////////////////////////////////////////////////////////////////////////////
function volver_atras(){
	window.history.back();
}
// //////////////////////////////////////////////////////////////////////////////////////
var tamagnoLetras =  100;
// //////////////////////////////////////////////////////////////////////////////////////
function AumentarTamanyo(ClaseElemento) {
	tamagnoLetras = tamagnoLetras + 10;
	$('.' + ClaseElemento).css('font-size', tamagnoLetras + '%');
}
// //////////////////////////////////////////////////////////////////////////////////////
function ReducirTamanyo(ClaseElemento) {
	tamagnoLetras = tamagnoLetras - 10;
	$('.' + ClaseElemento).css('font-size', tamagnoLetras + '%');
}
// //////////////////////////////////////////////////////////////////////////////////////
