//FHW User Font Size Adjustment Module//
/**
* mod_fhw-font-adjust version 2.5.2
* @author Kevin Florida, 04/04/2009
* **kevin@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.
* ---------------------------------------------------------------------------
*/

var prefsLoaded = false;
var defaultFontSize =11 ;   
var y=200;//screen.width;
setUserOptions();

/*
switch(y)
{
	case 1920:defaultFontSize=18;break;
	case 1600:defaultFontSize=14;break;
	case 1180:case 1280:defaultFontSize=14;break;
	case 1024:defaultFontSize=8;break;
    default :  defaultFontSize=(y<1024)?10:16;
	
}*/

var currentFontSize = defaultFontSize;


function revertStyles(){
//alert(defaultFontSize);
	currentFontSize = defaultFontSize;
	changeFontSize(0);
    
}



function changeFontSize(sizeDifference)
{
	
	currentFontSize = parseInt(currentFontSize + sizeDifference);
	
	img=document.getElementById("banner");

	setFontSize(currentFontSize);
};

function setFontSize(fontSize){
	var stObj = (document.getElementById) ? document.getElementById('content_area') : document.all('content_area');
	document.body.style.fontSize = fontSize + 'px';

	//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;
};



function setUserOptions(){
	if(!prefsLoaded){

		cookie = readCookie("fontSize");
		currentFontSize = cookie ? cookie: defaultFontSize;
		setFontSize(currentFontSize);

		prefsLoaded = true;
	}

}

window.onunload = saveSettings;

function saveSettings()
{
  createCookie("fontSize", currentFontSize, 365);
}

