function lgnSelect(optSection)
{
	if (optSection == 'gscp')
	{
		document.ogsLogin.action='http://login.gs-cp.com/index.php';
		return true;
	}
	else if (optSection == 'bill')
	{
		document.ogsLogin.action='https://secure.ownageservers.com/billing/index.php';
		return true;
	}
	else if (optSection == 'vent')
	{
		document.ogsLogin.action='https://ventrilo.mycp.net/index.php';
		document.ogsLogin.username.name = 'VCPusername';
		document.ogsLogin.password.name = 'VCPpassword';
		return true;
	}
	else if (optSection == 'team')
	{
		document.ogsLogin.action='http://206.212.244.146:5557/';	
	}
	else
	{
		return false;
	}
}

function lgnChange(optSection)
{
	document.ogsLogin.username.disabled=false;
	document.ogsLogin.password.disabled=false;
	document.ogsLogin.username.value='';
	document.ogsLogin.password.value='';
	if (optSection == 'team')
	{
		document.ogsLogin.username.disabled=true;
		document.ogsLogin.password.disabled=true;	
	}
}