<div class="art-BlockHeader">
<div class="l"></div>
<div class="r"></div>
<div class="art-header-tag-icon">
<div class="t">
Schriftgröße</div>
</div>
</div>
<div class="art-BlockContent">
<div class="art-BlockContent-body">
<script type='text/javascript'>
<!--
universalFontSize = 100;
maxSize = 150;
minSize = 50;
//-->
</script>
<script type="text/javascript" src="http://www.atze-schroeder.de/modules/mod_fhw_fontadjust/js/mod_fhw-fontadjust.js"></script>
<div class="">
<div id="fontSize" style="width: 100%; text-align: left;">
<span class="">
<a href="http://www.atze-schroeder.de/index.php" onclick="changeFontSize(1);
return false;" class="larger">
+
</a>
</span>
<span class="">
<a href="http://www.atze-schroeder.de/index.php" onclick="revertStyles();
return false;" class="reset">
normal
</a>
</span>
<span class="">
<a href="http://www.atze-schroeder.de/index.php" onclick="changeFontSize(-1);
return false;" class="smaller">
-
</a>
</span>
</div>
</div>
</div>
</div>
//FHW User Font Size Adjustment Module//
/**
* mod_fhw-fontadjust version 3.9
* @author Kevin Florida, 04/04/2009
* **customersupport@floridahostweb.com
* **www.floridahostweb.com
* ---------------------------------------------------------------------------
* This module is distributed free of charge under the GNU/GPL License. This
* module is distributed without any warranties. Use at your own risk. This module is based upon Simple Font Resizer by, UnDesign.
* Always backup your files and database prior to any new extension install.
* ---------------------------------------------------------------------------
* @package Joomla 1.5
* @copyright Copyright (C) 2009 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software and parts of it may contain or be derived from the
* GNU General Public License or other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
* This module is based upon Simple Font Resizer by, UnDesign.
* ---------------------------------------------------------------------------
* --------------VERSION CONTROL----------------------------------------------
* --VERSION 3.0 BY: KEVIN FLORIDA, 08/17/2009
* ----1) Updated code, removed excessive javascript
* --VERSION 3.2 by: Kevin Florida, 08/19/2009
* ----1) Removed invalid Div Tags
* ----2) Added classes to image buttons
* ----3) Added Reset link class
* --VERSION 3.3 BY: KEVIN FLORIDA, 09/03/2009
* ----1) Added Pixel, Point, and Percentage params.
* --VERSION 3.4 BY: KEVIN FLORIDA, 09/04/2009
* ----1) Fixed default size issue.
* --VERSION 3.5 BY: KEVIN FLORIDA, 09/08/09
* ----1) Fixed img URL, made automatic detection
* --VERSION 3.5.5 BY: KEVIN FLORIDA, 09/17/09
* ----1) Added base URL to all tags to fix joomfish conflict
* --VERSION 3.6 BY: KEVIN FLORIDA, 09/17/2009
* ----1) Added new params to control max and min font sizes.
* --VERSION 3.8 By: Kevin Florida, 09/26/2009
* ----1) changed em typo to %
* ----2) Added em option
* ----3) Added Custom Text Option
* ----4) Added em.js file
* ------note: em option has a bug, commented out until fixed.
* --VERSION 3.9 BY: KEVIN FLORIDA, 10/02/2009
* ----1) Fixed Artisteer Conflict
* ----2) Added tutorial link to language file.
*----------------------------------------------------------------------------
*/
var prefsLoaded = false;
var defaultFontSize = universalFontSize;
var currentFontSize = defaultFontSize;
var maxSize = maxSize;
var minSize = minSize;
function revertStyles(){
currentFontSize = defaultFontSize;
changeFontSize(0);
}
function changeFontSize(sizeDifference){
currentFontSize = parseInt(currentFontSize) + parseInt(sizeDifference * 5);
if(currentFontSize > maxSize){
currentFontSize = maxSize;
}else if(currentFontSize < minSize){
currentFontSize = minSize;
}
setFontSize(currentFontSize);
};
function setFontSize(fontSize){
var stObj = (document.getElementById) ? document.getElementById('content_area') : document.all('content_area');
document.body.style.fontSize = fontSize + '%';
//alert (document.body.style.fontSize);
};
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else expires = "";
document.cookie = name+"="+value+expires+"; path=/";
};
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
};
//window.onload = setUserOptions;
//---------------------------------
//--CONFLICT FIX BY AHMAD B
if ( window.onload != null )
{
var oldload = window.onload;
window.onload = function (e)
{
oldload (e);
setUserOptions()
}
}
else
{
window.onload = setUserOptions;
}
//-----------------------------------
function setUserOptions(){
if(!prefsLoaded){
cookie = readCookie("FHWfontSize34per");
currentFontSize = cookie ? cookie : defaultFontSize;
setFontSize(currentFontSize);
prefsLoaded = true;
}
}
window.onunload = saveSettings;
function saveSettings()
{
createCookie("FHWfontSize34per", currentFontSize, 365);
}