  
		  function init()  {
		    var iBase = TextResizeDetector.addEventListener(onFontResize,null);
			  //alert("The base font size = " + iBase);
			  
			  //
			  // New function to see what font size whe have, if font size is lower than medium (smaller, smallest) we will alert
			  //
			  if (iBase < 17 )
				{
			    var msg = "\nWebbplatsen \u00E4r inte anpassad f\u00F6r vald textstorlek";
			    msg +="\nV\u00E4lj st\u00F6rre text f\u00F6r b\u00E4ttre l\u00E4sbarhet";
			    msg +="\nUnder menyn Visa/View och Text Storlek/Text Size i webbl\u00E4saren finns alternativen f\u00F6r att \u00E4ndra text storlek";
			    
			    msg +="\n\nThis website does not support current text size";
			    msg +="\nPlease choose larger text";
			    msg +="\nUnder the menu View and Text Size in your browser are the alternatives to change the text size";
			    alert(msg);
			  }			  
		  }
		
		  function onFontResize(e,args) {
//		  if (args[0].iSize < args[0].iBase)
			  {
//			    var msg = "\nWebbplatsen \u00E4r inte anpassad f\u00F6r vald textstorlek";
//			    msg +="\nV\u00E4lj st\u00F6rre text f\u00F6r b\u00E4ttre l\u00E4sbarhet";
//			    msg +="\nUnder menyn Visa och Text Storlek i webbl\u00E4saren finns alternativen f\u00F6r att \u00E4ndra text storlek";
//			    
//			    msg +="\n\nThis website does not support current text size";
//			    msg +="\nPlease choose larger text";
//			    msg +="\nUnder the menu View and Text Size in your browser are the alternatives to change the text size";
//			    alert(msg);
			  }			  
			  //var msg = "\nThe base font size in pixels: " + args[0].iBase;
			  //msg +="\nThe current font size in pixels: " + args[0].iSize;
			  //msg += "\nThe change in pixels from the last size:" + args[0].iDelta;
			  //alert(msg);
		  }
		  //id of element to check for and insert control
		  TextResizeDetector.TARGET_ELEMENT_ID = 'TextResizeDetectorArea';
		  //function to call once TextResizeDetector has init'd
		  TextResizeDetector.USER_INIT_FUNC = init;
	  