function changeLogin(action) {
	f = document.getElementById("login_form");
	u = document.getElementById("input_username");
	p = document.getElementById("input_password");
	s = document.getElementById("location");
	a = document.getElementById("area");
	if(a.selectedIndex == "1") {
		f.action = "http://gcp.nextgenservers.com/login.php";
		u.name = "email";
		p.name = "pass";
		s.style.backgroundPosition = 'center';
	}
	else if(a.selectedIndex == "2") {
		f.action = "http://voice.nextgenservers.com/ventrilo/login.php";
		u.name = "email";
		p.name = "pass";
		s.style.backgroundPosition = 'bottom';
	}
	else {
		f.action = "https://billing.nextgenservers.com/index.php";
		u.name = "username";
		p.name = "password";
		s.style.backgroundPosition = 'top';
	}
}