function createTrialAndDemo(siteName){
	email = applicationUserForm.elements["applicationUser.email"].value;
	firstName = applicationUserForm.elements["applicationUser.billingFirstName"].value;
	lastName = applicationUserForm.elements["applicationUser.billingLastName"].value;
	industryId = applicationUserForm.elements["applicationUser.industryId"].value;

	if(!document.getElementById('acceptTerms').checked){
		alert('Please read the Terms and Conditions before creating an account.');
	}
	else if(email == '' || firstName == '' || lastName == ''){
		alert("Please enter your email address, first name and last name.");
	}
	else if(siteName = 'Contact29'){
		document.getElementById("submitButton").src="images/try_it_light.jpg";
		applicationUserForm.submit();
	}
	else{
		document.getElementById("submitButton").src="images/try_it_light.jpg";
		applicationUserForm.submit();
	}
}

function setReadTerms(){
	document.getElementById('acceptTerms').checked = true;
}

function launchSite(URL){
	window.open(URL,'','width=800,height=600,scrollbars=yes,resizable=yes,top=0,left=0');
}

function login(){
	applicationUserLoginForm.submit();
	document.getElementById("loginButton").onclick = "";
	document.getElementById("loginButton").src="images/login_button_light.gif";
}

function checkKeyPressForLogin(e){
	if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox

	if(key == 13){
		login();
	}
}
