function stat(msg) {
        window.status = msg;
        return true;
}


function drop() {
        window.status = "";
        return true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


var activeTab = 1;
function openTab(tabId) {
	// reset old tab and content
	document.getElementById("tabLink"+activeTab).className = "tabLink";
	document.getElementById("tabContent"+activeTab).className = "tabContent";
	// set new tab and content
	document.getElementById("tabLink"+tabId).className = "tabLinkActive";
	document.getElementById("tabContent"+tabId).className = "tabContentActive";
	activeTab = tabId;
}
var activeContent = 1;
function openContent(contentId) {
	// reset old content
	document.getElementById("contentText"+activeContent).className = "contentText";
	// set new content
	document.getElementById("contentText"+contentId).className = "contentTextActive";
	activeContent = contentId;
	scroll(0,150);
}
