function load() {
	if ( document.getElementById ) {
		var p = new Poly9.URLParser(document.location.href); // parse the url, get the fragment after '#'
		if (window.tabs) {
			loadTabs();  // unload all tabs
			if (p.getFragment()) {
				swap(p.getFragment()); // load the result
//				alert(p.getFragment());
			}
			else {
				swap(tabs[0][0]);
			}
		}
	}
}

