/*
Variables for sg_layout_ini.js
FILE DI CONFIGURAZIONE PER LO SCRIPT
*/
var ART_HEIGHT_MIN = 200; //minium height the View can be
var ART_HEIGHT_MAX = 0; //maximiun height for View, set to 0 if there is no limit, set = to ART_HEIGHT_MIN to make the view non scaleable
var NAVIGATION_AREA = 240; //Number of pixels used by navigation or non article text
var TOTALPAGES = 0; // Numero totale di Pagine , dopo l'inizializzazione conterra il numero di colonne
var LINE_HEIGHT_MOD = .7;  	// the line height ='s the font_size (see below) * LINE_HEIGHT_MOD + font_size
var MAX_LINE_HEIGHT = .8;	// the modifier can adjust itself in the event of a roudning error
var ORIGINAL_LINE_HEIGHT_MOD = LINE_HEIGHT_MOD;
var CONTENTS = "pageContents";  // name of HTML element containing the text body
var VIEWER = "textParent"; //name of HTML element to hold column(s)
var IMG_VIEWER = "imageViewer"; //name of HTML element to hold images(s)
var IMG_INLINE = false; //set to true if images should appear inline, more processor intesive
					//!! Not implemented yet
var COLUMN_NUM = 2; // base mode for the number of columns present
var font_size = 10; //base font-size
var font_size_MAX = 10;
var font_size_MIN = 10;