// JavaScript Document

var form_flag = "0"
function hideAll(){

	if(window.form_flag != "a_u"){
		document.getElementById("a_u").style.display="none";
	}
	
	if (window.form_flag != "t_o"){
	document.getElementById("t_o").style.display="none";
	}
	
	/*if (window.form_flag != "p_w"){
	document.getElementById("p_w").style.display="none";
	}
	
	if (window.form_flag != "u_r"){
	document.getElementById("u_r").style.display="none";
	}*/
	
	setFormFlag("0");
	
}


function setFormFlag(flag){

	window.form_flag = flag;
}

function toggleForms(form_id){

	el = document.getElementById(form_id);
	if (el.style.display == ""){
		hideAll();
	}
	else{
		hideAll();
		el.style.display="";
	}
	resetContentBackground()
}


//YAHOO.util.Event.onDOMReady(hideAll);