/*

Variables for sg_layout_ini.js

*/

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 = 402; //Number of pixels used by navigation or non article text
							// this variable should be detected at initialization, but is not yet

var LINE_HEIGHT_MOD = .4;  	// the line height ='s the font_size (see below) * LINE_HEIGHT_MOD + font_size
var MAX_LINE_HEIGHT = .5;	// 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 = true; //set to true if images should appear inline, more processor intesive
					//!! Not implemented yet
					
var COLUMN_NUM = 1; // base mode for the number of columns present

var font_size = 12; //base font-size
var font_size_MAX = 15;
var font_size_MIN = 10;
var picture_url = "";
var scolmode = false;


/*
function start() {
   
    if(document.getElementById(CONTENTS) == null)  return;
    if (NAVIGATION_AREA == 0) {
        document.getElementById(CONTENTS).style.display = "inline";
        document.getElementById(CONTENTS).style.padding = "10px";
        document.getElementById(CONTENTS).style.margin = "10px";
        return;
    }



   
}*/ 