function VOS_function(show)
{
	if(VOS1 != undefined && VOS2 != undefined)
	{
		if(VOS1.style != undefined && VOS2.style != undefined)
		{
			VOS1.style.display = (show)?"none":"";
			VOS2.style.display = (show)?"":"none";
			if(show)
			{
				var obj = document.forms[0].elements["jumpTo"];
				if(obj != undefined)obj.focus();
			}
		}
	}
}

function goLink(obj)
{
	if(obj != undefined)
		if(obj.options != undefined)
		{
			for(var i=0; i < obj.options.length; i++)
				if(obj.options[i].selected)
				{
					if(obj.options[i].value != "")
						window.open(obj.options[i].value, "_blank");
					break;	
				}
			obj.options[0].selected = true;
		}
	VOS_function(false);
}

function GOBtn_function()
{
	if(LoginBt == undefined)return;
	var obj = document.forms[0];
	if(obj == undefined)return;
	var obj2 = obj.elements["id"], obj3 = obj.elements["pw"];
	if(obj2 == undefined || obj3 == undefined)return;
	if(obj2.value.length > 5 && obj3.value.length > 5)
	{
		LoginBt.style.display = "";
	}
	else
		LoginBt.style.display = "none";
}

function RunKeyDown(e)
{
		setTimeout("GOBtn_function()", 200);
}

function Block()
{
	return false;	
}