// JavaScript Document
function IdShow(ById){
					GetById(ById).style.display = "block";
				}
				function IdHide(ById){
				}
				function click(){
					$("#typeTab").hide();
				}
				function seltype(typeTab)
				{
					GetById("ddltype").value = typeTab.title;
					GetById("typeId").innerHTML = typeTab.innerHTML;
				}
				document.onmouseup= click;
				
				function GetById(ByName){
					return document.getElementById(ByName);
				}
				function CheckFormLogin(){
					if ( GetById("UserName").value == "" )
					{
						alert("* You must enter your user name");
						GetById("UserName").focus();
						return false;
					}
					if ( GetById("UserPassword").value == "" )
					{
						alert("* You must enter your password");
						GetById("UserPassword").focus();
						return false;
					}
					var ddlvalue = GetById("ddltype").value;
					GetById("FormLogin").action = "http://" + ddlvalue+"/user/Login2.asp";
					
					document.getElementById("FormLogin").submit();
				}
