/*
first value is the asp page name

second value enter values as you would with a query string in the url

function calls return_ajaxFunction_form which contains return string and actions on other page...
*/
return_text_form_feedback = ""
function ajaxFunction_form_feedback(page_name, values, func_name)
{
return_text_form_feedback = ""
var xmlhttp;
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {
  // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
else
  {
  alert("Your browser does not support XMLHTTP!");
  }
//   This is only used in asynchronus requests.....
//xmlhttp.onreadystatechange=function()
//{
//if(xmlhttp.readyState==4)
//  {
//  return_text = xmlhttp.responseText;
//  eval(func_name)
//  }
//}
xmlhttp.open("post",page_name,false);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", values.length);
xmlhttp.setRequestHeader("Connection", "close");
xmlhttp.send(values);
return_text_form_feedback = xmlhttp.responseText;
eval(func_name)
}









	


