function showHelp(){
	var height	= screen.height / 3;
	var width	= screen.width / 3;
	var w = window.open("/help/"+document.forms[0].FormId.value+".html", "new",
	  "toolbar=0,location=0,directories=0,height="+height+",width="+width);
	w.focus();
}

function mainWin(FormId){
	window.parent.location.href = "/passwd_app/PasswdSite?FormId="+FormId;
}

function bodyLoadExternal(){
	f = document.forms[0];
	if(f==null){
		f = document.forms[0];
	}
	if(f){
		var e = f.elements[0];
		if(e && e.type != "hidden"){
			e.focus();
		}
	}
}

