// JavaScript Document//var windowAS;//apertura de la pagina de acceso al area de socios a través de una nueva ventana.function openAS(){	var nav = navigator.userAgent.toLowerCase();	var regExp = new RegExp ("mac");			if (!windowAS || windowAS.closed ) {		if (regExp.test (nav) == true ){					var regExp2 = new RegExp ("safari");			if (regExp2.test (nav) == true ){				windowAS = window.open('https://www.aisge.es/fmi/iwp/cgi?-db=ThespisWeb&-startsession', 'ventana','linkname, height=581, width=799, resizable=0, scrollbars=yes, status=0');				//windowAS.scrollbars=false;				var x=(screen.width - 780)/2;				var y=(screen.height - 589)/2;				//windowAS.name="Área de socios de AISGE";				windowAS.moveTo(x,y);			}			else{				windowAS = window.open('https://www.aisge.es/fmi/iwp/cgi?-db=ThespisWeb&-startsession','ventana','linkname, height=584, width=785, resizable=0, scrollbars=yes, status=0');				//windowAS.scrollbars=true;				var x=(screen.width - 785)/2;				var y=(screen.height - 584)/2;				//windowAS.name="Área de socios de AISGE";				windowAS.moveTo(x,y);			}					}		else{			windowAS= window.open('https://www.aisge.es/fmi/iwp/cgi?-db=ThespisWeb&-startsession','ventana','linkname, height=580, width=785, scrollbars=yes, resizable=0, status=0');			var x=(screen.width - 785)/2;			var y=(screen.height - 580)/2;			//windowAS.name="Área de socios de AISGE";			windowAS.moveTo(x,y);			}	}else{						windowAS.focus();	}			  }//redirección a la página web de aisge y apertunra de una nueva ventana con la página de acceso al area de sociosfunction redirection(){	window.location = "https://www.aisge.es";	openAS();}
