function showLoginDialog(e){
	$("<div/>")
		.append(
			$("<iframe frameborder='no'/>")
				.attr("src", "/auth/")
				.attr("width", "450px")							
				.attr("height", "250px")
			)
		.dialog({
			title:  "Login",
			bgiframe: true,
			width: 500,
			height: 350,
			modal: true,
			position: ['top', 150],
			buttons: {
				Close: function() {
					$(this).dialog('close');
						$.loadBookmarks();					
					}
			}
		});
	return false;
}

function showRegisterDialog(e){
	$("<div/>")
		.append(
			$("<iframe frameborder='no'/>")
				.attr("src", "/auth/register/")
				.attr("width", "455px")							
				.attr("height", "300px")
			)
		.dialog({
			title:  "Register",
			bgiframe: true,
			width: 500,
			height: 375,
			modal: true,
			position: ['top', 150],
			buttons: {
				Close: function() {
					$(this).dialog('close');
						$.loadBookmarks();					
					}
			}
		});
	return false;
}


