function showQuickboxLogin(url)
{
	//StatusWindow.openProgressWindow();
	new Ajax.Request(url, {onSuccess: function(transport) { 
		quickViewLoginLoaded(transport.responseText);}
	, onFailure: AjaxErrorHandler});
}

function quickViewLoginLoaded (responseText) {
	//StatusWindow.close();
	$('ajaxlogin').update(responseText);
	quickViewOverlay = new Overlay('ajaxlogin');
	quickViewOverlay.show();
}
