function episodesLookup(Nola,Start,Count)
{
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      return false;
      }
    } 
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
	document.getElementById("episodeslookup").innerHTML=xmlHttp.responseText;
      }
    }
  xmlHttp.open("GET","/CreateProgram.nsf/EpisodesLookup?readform&Nola="+Nola+"&Start="+Start+"&Count="+Count ,true);
  xmlHttp.send(null);
  }
function tipsLookup(Start,Count)
{
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      return false;
      }
    } 
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
	document.getElementById("previoustips").innerHTML=xmlHttp.responseText;
      }
    }
  xmlHttp.open("GET","/CreateProgram.nsf/TipsLookup?readform&Start="+Start+"&Count="+Count ,true);
  xmlHttp.send(null);
  }
function licenseeLookup(State)
{
	stateSelected=document.Contact.State;
	stateVal=stateSelected.options[stateSelected.selectedIndex].value;
	var xmlHttp;
	try
	{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
		  {
		  // Internet Explorer
		  try
		    {
		    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		    }
		  catch (e)
			    {
			    try
			      {
			      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			      }
			    catch (e)
			      {
				      return false;
			      }
	   } 
}
	xmlHttp.onreadystatechange=function()
	{
	    if(xmlHttp.readyState==4)
	      {
		document.getElementById("licenseelookup").innerHTML=xmlHttp.responseText;
	      }
	}
	xmlHttp.open("GET","/CreateTV.nsf/LicenseeLookup?readform&State="+stateVal,true);
	xmlHttp.send(null);
}
