/*function cambiarTamano(tam) {
	if (document.all)
		miRegla = document.styleSheets[3].rules;
	else
		miRegla = document.styleSheets[3].cssRules;
	for (i = 0; reg = miRegla[i]; i++) {
		size = reg.style.fontSize;
		if (size != '') {
			alert(size);
			size = parseFloat(size) + tam + 'em';
			alert(size);
			reg.style.fontSize = size;
		}
	}
}
*/


function cambiarTamano(tam) {
	var divId = document.getElementById('wrapper_cen');
	if(divId.style.fontSize == '')
		divId.style.fontSize = '100%';
    var fontSize = parseFloat(divId.style.fontSize) + tam;
    if(fontSize <= 50 || fontSize >= 250){
        return;
    }
	divId.style.fontSize = fontSize + '%';
}