/**
 * @author jlowman
 */
			//BEGIN: Utility Functions (Non-Interface)
			function jaxGetSql(URL, results, doneFunc) 
			{
				this.URL = URL;
				this.results = results;
				this.doneFunc = doneFunc;
			}
			jaxGetSql.prototype.getSql = getSql;
			jaxGetSql.prototype.ajaxSel = ajaxSel;

			function getSql()
			{
				ajaxSel(this.URL, this.results, this.doneFunc);
			}

			function ajaxSel(strUrl, results, doneFunc)
			{
				strUrl = 'jax/' + strUrl;
				xmlHttp = new GetXmlHttpObject();
				if (xmlHttp==null)
				{
					alert ("Your browser does not support AJAX!");
					return;
				}
				if(strUrl.indexOf('?') > 0) 
				{
					strUrl = strUrl + "&=";
				}
				else
				{
					strUrl = strUrl + "?=";
				}
				strUrl=strUrl+"&amp;sid="+Math.random();
				xmlHttp.onreadystatechange=function ()
					{
						if (xmlHttp.readyState == 4) 
						{
							resutlts = importStringXML(xmlHttp.responseText, results,doneFunc);
						}				
					};
				xmlHttp.open("GET",strUrl,true);
				xmlHttp.send(null);
			}


			
			//END: utility functions
