function fill_it(){
var os_box, app_box, agt, kiste;
agt = navigator.userAgent.toLowerCase();
kiste = navigator.platform;
os_box = document.getElementById("os");
app_box = document.getElementById("browser");
os_box.value = kiste;
app_box.value = agt;
}
window.onload = fill_it;

