
	function jShowLoginScreen() {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/login.ajax.php", document.getElementById("AjaxInjectionContainer"), null, null, "FocusLoginPassword");
		jShowAjaxScreen(true);
	}
	
	function jShowAjaxAlert(sHeader, sBody) {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/alert.ajax.php", document.getElementById("AjaxInjectionContainer"), null, "&Header=" + sHeader + "&Body=" + sBody, null);
		jShowAjaxScreen(true);
	}
	
	function jShowAjaxSessionAlert() {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/alert.ajax.php", document.getElementById("AjaxInjectionContainer"), null, null, null);
		jShowAjaxScreen(true);
	}
	
	function jShowChallengeTypes() {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/challenge-types.ajax.php", document.getElementById("AjaxInjectionContainer"), null, null, null);
		jShowAjaxScreen(true);
	}
	
	function jShowSendMessageScreen(sUsername) {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/send-message.ajax.php", document.getElementById("AjaxInjectionContainer"), null, sUsername != null ? "&Username=" + sUsername : null, null);
		jShowAjaxScreen(true);
	}
	
	function jShowForgotPasswordScreen(sUsername) {
		jExecuteAjaxRequest("http://www.ideablender.com/ajax/forgot-password.ajax.php", document.getElementById("AjaxInjectionContainer"), null, sUsername != null ? "&Username=" + escape(sUsername) : null, null);
		jShowAjaxScreen(true);
	}
	
	function jShowLoadingScreen() {
		document.getElementById("AjaxInjectionContainer").innerHTML = sDefaultLoadingHTML;
		jShowAjaxScreen(true);
	}
	
