function initAjaxObj() 
{
	var ajax;
	try 
	{
		ajax=new XMLHttpRequest();
	}
	catch (e) 
	{
		try 
		{
			ajax=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) 
		{
			try 
			{
				ajax=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				alert("Your browser is out of date so it does not support AJAX!\nDownload an up to date browser!\n\nTry FireFox, www.firefox.com.");
				return false;
			}
		}
	}
	return ajax;
}
function ctf(theText) 
{
	if(theText.value==theText.defaultValue) 
	{
		theText.value = "";
		theText.style.color = "#000000";
	}
}
function rtf(theText) 
{
	if(theText.value=="") 
	{
		theText.value = theText.defaultValue;
		theText.style.color = "#a4a4a4";
	}
}
function l2s(theForm) {
	if (theForm.q.value == theForm.q.defaultValue) {
		theForm.q.focus();
		return false;
	}
	return true;
}

