var xmlHttp;
function showSearchBoxpackageall(tour_type)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
 document.getElementById("t_package_id").disabled=true;
var url="http://busneeds.com/ajaxQuoteTourAction.php"
url=url+"?tour_type="+tour_type+"&sid="+Math.random()
xmlHttp.open("GET",url,true)
xmlHttp.onreadystatechange=tourpackBoxMoved;
xmlHttp.send(null)
}
function tourpackBoxMoved() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
document.getElementById("tour_box_package_div").innerHTML=xmlHttp.responseText 
document.getElementById("t_package_id").disabled=false;
 } 
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}
