
function onFocusHandler_p(fld){
	fld.style.display = 'none';
	var fld2 = (document.getElementById) ? document.getElementById('password') : document.all['password'];
	fld2.style.display = 'block';
	fld2.focus();
	return true;
}
function onBlurHandler_p(fld){
	if(fld.value === ''){
		fld.style.display = 'none';
		var fld2 = (document.getElementById) ? document.getElementById('fauxPassword') : document.all['fauxPassword'];
		fld2.style.display = 'block';
	}
	return true;
}
function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}
function moveNumbers()
{
	var bgun=document.getElementById("bgun");
	var bay=document.getElementById("bay");
	var byil=document.getElementById("byil");
	var option=bgun.options[bgun.selectedIndex].text;
	var option2=bay.options[bay.selectedIndex].text;
	var option3=byil.options[byil.selectedIndex].text;
	var txt=document.getElementById("result").value;
	var adrs = "http://rega.basbakanlik.gov.tr/main.aspx?home=http://rega.basbakanlik.gov.tr/eskiler/"
	// txt=txt + option + option2 + option3;
	txt=txt + adrs + option3 + "/" + option2 + "/" + option3 + option2 + option + ".htm&main=http://rega.basbakanlik.gov.tr/eskiler/" + option3 + "/" + option2 + "/" + option3 + option2 + option + ".htm";

	// document.getElementById("result").value=txt;
	window.location.href = txt;
}

