/* WHEN DONE SETTING UP THIS FILE... PLEASE DELETE ALL THE ITEMS THAT ARE COMMENTED OUT THAT YOU ARE NOT USING */

/* Constants */
var rootDirectory = "";
var defaultFileList = "index.htm";

PINT_BrowserDetection("browserupgrade.htm");

// This should be uncommented if you are using DHTML Menus
function init() {
	var fileName  = PINT_GetCurrentFileName();
	var directory = PINT_GetCurrentDirectory();

	if( PINT_IsRootDirectory( PINT_GetCurrentFilePath() ) && PINT_IsDefaultFile() ) {
				
		// Uncomment this for popup windows
		// PINT_AnchorPopupWindows();

		PINT_FirstFocus();
		
		// Uncomment for Nice Titles;
		//PINT_MakeNiceTitles("testdiv","testp");
	} 
	// This function is needed for Form Validation
	// PINT_FormValidator();
	PINT_CSSMenus("nav");
}

function cleanup(){}

window.onload = init;
window.onunload = cleanup;	