var textZoomer = {
	current: 100,
	fact: 20,
	min: 100,
	max: 220,

	zoomOut: function (element) {
		return this.zoom(element, true);
	},

	zoomIn: function (element) {
		return this.zoom(element, false);
	},

	zoom: function (element, zoomin) {
		if (zoomin) {
			this.current -= this.fact;
			this.current = this.current < this.min ? this.min : this.current;
		}
		else {
			this.current += this.fact;
			this.current = this.current > this.max ? this.max : this.current;
		}
		var htmlObj = document.getElementById(element);
		if (htmlObj) {
			htmlObj.style.fontSize = this.current+'%';
		}
		return false;
	}
}

function openWindowSecure(){
	window.width=1024;
	window.lenght=758;
	//document.inscription.action="https://techno.saint-medard-en-jalles.fr/techno/kiosque/espace/fr_controle_acces_compte.php";
	document.inscription.submit();
} 