
	var DB = $('DB').value;
	var Who = $('Who').value;
	
	var url = 'SetFolder.asp?DB=' + DB + '&Who=' + Who;
	new Ajax.Request(url, 
		{	method: 'get', 
			onSuccess: function(transport)	{
				
				if (transport.responseText == 'Success')	{
					return;
				}
			},
			onFailure: function(transport)	{
				return;
			}
		}
	)
	
