function placeIt() {
if (!document.all) {
document.getElementById("top_bar").style.top = window; // For Mozilla etc.
} else {
document.getElementById("top_bar").style.top = document.documentElement; // For the IE...
}
window.setTimeout("placeIt()", 100);
}
