function scrollcruise(ofset)
{
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("browsebar").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",'/free/scrollcruise.php?ofset='+ofset,true);
xmlhttp.send();
}


