function visi(nr)
{
	document.getElementById(nr).style.display = 'inline';	
}
function hidden(nr)
{
	document.getElementById(nr).style.display = 'none';	
}

var xmlHttp;

function produkt(str)
{
	if (str.length==0)
	  { 
	  document.getElementById("produktindhold").innerHTML="";
	  return;
	  }
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	  {
	  alert ("Din browser understøtter ikke AJAX! Opdater venligst til en nyere version.");
	  return;
	  } 
	var url="produktinfo.php";
	url=url+"?q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
} 
function showload(id)
{
	if (xmlHttp.readyState!=4)
	{
	document.getElementById("produktindhold").innerHTML= '<div style="position: relative; top: 0px; left: 40px;"><h1><img src="/gfx/loading.gif" style="position: relative; top: 10px;" /> Henter...</h1></div>';
	}
	
}

function stateChanged() 
{
	if (xmlHttp.readyState==4) 	{ 
		document.getElementById("produktindhold").innerHTML=xmlHttp.responseText;
	} else {
		setTimeout("showload('produktindhold')", 3000);
	}
}
	function GetXmlHttpObject()
	{
	var xmlHttp=null;
	try
	  {
	  // Firefox, Opera 8.0+, Safari
	  xmlHttp=new XMLHttpRequest();
	  }
	catch (e)
	  {
	  // Internet Explorer
	  try
		{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
	  catch (e)
		{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	  }
	return xmlHttp;
}
