
function goToUrlWithConfirmation(aText, aUrl){
    var confirmed=window.confirm(aText);
    if(confirmed){
	document.location.href=aUrl;
    }
}

function toggleGuestRegistration(aValue, aElementName){
	alert("Test: " + aValue + aElementName);
}