function startUp() {
	initDHTMLAPI();
	// updateLinks();
	// update child iframes as well -Janardhan Babu Chinta
	
	for(i=0;i<window.frames.length;i++) updateLinks(window.frames[i].document, true);
	
	styleSwitcherOnLoad();
}

function startDown() {
	// Store the active style sheet...
	var title = getActiveStyleSheetTitle();
	
	// But NOT if it's the print css..
	if (getActiveStyleSheetTitle()!="print") {
		createCookie("style", title, 365);
	}
}

window.onload = startUp;
window.onunload = startDown;
