function usernameCheck1() {
	if(document.forml1.username.value == 'username') {
		document.forml1.username.value = "";
	}
}

function LoginDo() {
	if (document.forml1.username.value != '' && document.forml1.password.value != '') {
	
		if (document.forml1.server[0].selected == true) {
		   document.forml1.action = 'http://118.127.0.205/Templates/Default/login.aspx';
		}
		if (document.forml1.server[1].selected == true) {
		   document.forml1.action = 'http://www.dominance-gaming.com.au/WHM/dologin.php?goto=clientarea';
		}

	}
	else {
		alert('all fields must be filled in');	
	}
	
	return true;
}




function contactCheck() {
	if (document.formc1.contactName.value != '' && document.formc1.contactEmail.value != '' && document.formc1.contactSubject.value != '' && document.formc1.contactMessage.value != '') {
	
		 document.formc1.action = 'func/contact.php';

	}
	else {
		alert('all fields must be filled in');	
	}
	
	return true;
}

function loginChange() {
	if (document.forml1.server[0].selected == true) {
		document.forml1.username.name = 'UserName';
		document.forml1.username.id = 'UserName';	

		document.forml1.password.name = 'Password';
		document.forml1.password.id = 'Password';	
	}
	else if (document.forml1.server[1].selected == true) {
		document.forml1.UserName.name = 'username';
		document.forml1.UserName.id = 'username';	

		document.forml1.Password.name = 'password';
		document.forml1.Password.id = 'password';	
	}	
}