bemore you do know that there is a difference between #searchresults and #searchResults?
Try this: In the css add
Code:
#searchResults{
position:absolute;
top: 230px;
left: 210px;
z-index: 100;
width:845;
background-color: pink;
display:none;
}
And doctor this
Code:
if(http.readyState == 4 && http.status == 200) {
document.getElementById('searchResults').innerHTML = http.responseText;
document.getElementById('searchResults').style.display = "block"; <= ADD
With a little luck the info should pop up like you want. Use the css top and left to position it where you want it.