function getHttpRequestTarif(gruppe,subgruppe)
{var xmlhttp=null;if(window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}
else if(window.ActiveXObject){xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
xmlhttp.open("GET",'get_top_8_tarife.inc.php?wert_gruppe='+gruppe+'&wert_subgruppe='+subgruppe,true);xmlhttp.onreadystatechange=function()
{if(xmlhttp.readyState!=4)
{}
if(xmlhttp.readyState==4&&xmlhttp.status==200)
{var bild='<img src=\"http://www.sparhandy.de/images/geraete/'+subgruppe+'/5.png\" width=\"166\" height=\"320\">';document.getElementById('bb_color_png').innerHTML=bild;if(subgruppe!=956)
{document.getElementById('955').style.display='block';document.getElementById('956').style.display='none';}
else
{document.getElementById('955').style.display='none';document.getElementById('956').style.display='block';}
document.getElementById('bb_top_tarife_main').innerHTML=xmlhttp.responseText;}}
xmlhttp.send(null);}
