

var SignIn = {
	
	Load : function()
	{
		var DropDownTitle = document.getElementById("ctl00_LayoutContent_DropDownTitle");
		var LabelTitleOther = document.getElementById("ctl00_LayoutContent_LabelTitleOther");
		var TextBoxTitle = document.getElementById("ctl00_LayoutContent_TextBoxTitle");
		
		LabelTitleOther.style.display = "none";
	
		DropDownTitle.onchange = function()
		{
			
			if(this[this.selectedIndex].value == "--")
			{
				LabelTitleOther.style.display = "block";
				TextBoxTitle.focus();
			}
			else
			{
				LabelTitleOther.style.display = "none";
			}
			
		}	
	
	}



}

window.addToOnload(SignIn.Load);
