<!--
	function Go(x) {
		if (x == "leer") {
			document.forms[0].reset();
			document.forms[0].elements[0].blur();
			return;
		} else if (x == "") {
			return;
		} else {
			parent.frames[2].location.href = x;
			document.forms[0].elements[0].blur();
		}
	}

	function setWidth() {
		var width;
		if (window && window.innerWidth) {
			width = top.window.innerWidth - 160;
		} else {
			if (document.body && document.body.offsetWidth) {
				width = top.document.body.offsetWidth - 160;
			} else {
				width = screen.width - 180;
			}
		}
		if (width > 900) {
			document.getElementById("main_div").style.width = "800px";
		} else {
			document.getElementById("main_div").style.width = "95%";
		}
	}
//-->

