/* Constants */
var rootDirectory = "";

var defaultFileList = "index.php";

PINT_BrowserDetection("browserupgrade.htm");

if (PINT_AllowForFontChanger()) 
	{
	PINT_SetGlobalFontDiv("content_font_change");
	PINT_BuildCSSStructure();
	}
function init()
	{
	var fileName  = PINT_GetCurrentFileName();
	var directory = PINT_GetCurrentDirectory();
	PINT_AnchorPopupWindows();
	//PINT_FirstFocus()
		
	// Uncomment for Nice Titles;
	//PINT_MakeNiceTitles("testdiv","testp");
	
	// This function is needed for Form Validation
	//PINT_FormValidator();
    PINT_TextSizeThreeButton();	
	if (directory != "popup") PINT_CSSMenus("nav");
	}

function cleanup(){}

window.onload = init;
window.onunload = cleanup;

