/*

Variables for sg_layout_ini.js

*/

var ART_HEIGHT_MIN = 500; //minium height the View can be
var ART_HEIGHT_MAX = ART_HEIGHT_MIN; //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 = 220; //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 = .818;  	// the line height ='s the font_size (see below) * LINE_HEIGHT_MOD + font_size
var MAX_LINE_HEIGHT = 0.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 = 2; // base mode for the number of columns present

var font_size = 11; //base font-size
var font_size_MAX = 11;
var font_size_MIN = 11;
var pageDiv = " / "; // divide the page counter
var fixedHeight = 550;// set to 0 for dynamic resizing
var smallHeight=300;// a smaller height for certain pages (Testimonial & Events)

if(navigator.appName=="Netscape")
{
	//LINE_HEIGHT_MOD = .60; 
	//MAX_LINE_HEIGHT = 1;	
}