function forgotPassword(emailAddress){
	window.open('ViewResetApplicationUserPassword.do?applicationUser.email='+emailAddress,'','width=300,height=200,scrollbars=yes,top=100,left=100');
}
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 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{
		document.forms['applicationUserForm'].submit();
	}
}
$(function() {
	// Slider
	$('#coin-slider').coinslider({width:903,height:254,opacity:1, delay: 6000});
	
	// radius Box
	$('.index-img img, .index-box, .pic img').css({"border-radius":"6px", "-moz-border-radius":"6px", "-webkit-border-radius":"6px"});
	$('.topnav ul li ul, .cs-title').css({"border-bottom-left-radius":"6px", "border-bottom-right-radius":"6px", "-moz-border-radius-bottomleft":"6px", "-moz-border-radius-bottomright":"6px", "-webkit-border-bottom-left-radius":"6px", "-webkit-border-bottom-right-radius":"6px"});
	$('.centercol-bg').css({"border-top-left-radius":"6px", "border-top-right-radius":"6px", "-moz-border-radius-topleft":"6px", "-moz-border-radius-topright":"6px", "-webkit-border-top-left-radius":"6px", "-webkit-border-top-right-radius":"6px"});
	$('.tooltipText').tooltip({ offset: [25, 0], effect: 'slide'});
});

