// JavaScript Document

function nofunc(){
	alert ("Excuse, this page is not available in english.");
	return false;
}

function pop_pup(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function fast_nav(targ,selObj,restore){
	var page = selObj.options[selObj.selectedIndex].value;
	if (page != "none") {
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	} else {
		return false;
	}
	if (restore) {
		selObj.selectedIndex=0;
	}
}