// JavaScript Document
// dhtml_commons.js

var icc = 0;
function resizeFont(multiplier) {
	var katamo = parseFloat(document.body.style.fontSize);
	//alert(katamo);
	//alert("icc: " + icc);
	if (document.body.style.fontSize == "") {
		document.body.style.fontSize = '1.0em';
	}
	//alert("current: " + parseFloat(document.body.style.fontSize));
	
	if (multiplier == -1 ) {
		//alert("dare, multiplier: " + multiplier + " katamo: " + katamo);
		if (katamo >= .8 || document.body.style.fontSize == "") {
			//alert("mul0 1st");
			document.body.style.fontSize = parseFloat(document.body.style.fontSize) + multiplier * 0.12 + "em";
		} 
		else if (icc == 0) {
			//alert("honto ni");
			document.body.style.fontSize = parseFloat(document.body.style.fontSize) + multiplier * 0.19 + "em";		
		}
	} else {
		if (katamo <= 1.1) {
			document.body.style.fontSize = parseFloat(document.body.style.fontSize) + multiplier * 0.12 + "em";
		}
	  //alert(katamo + " else");
	}
	icc++;
};