// this is where you can change the AJAX call backs for the response div

function standardXMLResultStart(XMLDOMObj)
{
	tsGetElementById('response').innerHTML = '';
}

function standardXMLResultEnd()
{
	// for what ever the designer wants to do
	document.getElementById("formHolder").style.visibility	="hidden";
	document.getElementById("response").style.top	="20px";
	document.getElementById("response").style.display	="block";

	new Effect.BlindUp(document.getElementById('formHolder'), {duration: 1});
	new Effect.BlindDown(document.getElementById('response'), {duration: 1});
}

//
// called for each field in the data node of the thanks XML .htm file
//
function standardXMLResultNode(xmlNodeName, xmlNodeValue)
{
	tsGetElementById('response').innerHTML += xmlNodeValue;
}
