// JavaScript Document

function createRequest()
{
  var xmlHttp;
  try
  {
   xmlHttp = new XMLHttpRequest();
  }
  catch(e)
  {
    try
    {
      xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
    }
    catch(e) { }
  }
    if (!xmlHttp)
    alert("Your browser is too old. \n You will not be able to use this order form.");
  else 
    return xmlHttp;
}

