function sendActivationEmail(email){
	//alert(email);
	document.location.href = "/section/103?action=submit&email="+email;
}
/*
function logout(){
	var options = {asynchronous:true,
				   evalScripts:true};
	new Ajax.Updater('loginbox','/ajax/logout',options);
}
*/
function resendEmail(){
	document.emailForm.submit();
}

function reproduceCaptcha(){
	//alert(document.getElementById('captchaImg').src);
	document.getElementById('captchaImg').src = "/php/captcha.php?random="+Math.round(100000*Math.random())
;
}

function submitQuestionaireForm(){
	var f = document.questionaireForm;
	f.submit();
}

function openMembershipTnc(){
	popup("/html/member_tnc.htm" , 520,600,'yes','no');
}