	function confirmRemove(url)
	{
		Dialog.confirm("Are you sure you wish to remove this item?", 
		{width:300, okLabel: "Yes", 
			buttonClass: "myButtonClass",
			id: "myDialogId",
			cancel:function(win) { return false; },
			ok:function(win) { window.location.href=url;}
		});
		return false;
	}
