var xmlhttp

function showproduct(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
//var url="../selCelebName.asp?typeid="+str;
var url="../searchproduct.asp?productid="+str;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);

xmlhttp.onreadystatechange=stateChanged;
}

function stateChanged()
{
if (xmlhttp.readyState == 4 && document.getElementById("indexbody")!= null )
  {	
  //document.getElementById("product").innerHTML=xmlhttp.responseText;
  var iFrameBody = document.getElementById("indexbody");
  iFrameBody.setAttribute('frameBorder','0');
  iFrameBody.setAttribute('allowtransparency','true');
  iFrameBody.setAttribute('scrolling','no');
  iFrameBody.setAttribute('width','840');
  iFrameBody.setAttribute('height','200');
  iFrameBody.setAttribute('marginwidth','20');		
  iFrameBody.setAttribute('marginheight','10');
  iFrameBody = document.getElementById("indexbody").contentWindow.document.body;
  iFrameBody.innerHTML = xmlhttp.responseText;
  
  }
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}

