function openwindow_small(woot) {
    window.open("http://" + woot,"new_window" + Math.floor(Math.random()*10000),"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=300,height=100,top=200,left=200");
}

function openwindow_nomenus(woot) {
//screen.availWidth 
//screen.availHeight
    x = screen.availWidth - 25;
    y = screen.availHeight - 50;
    window.open("http://" + woot,"new_window" + Math.floor(Math.random()*10000),"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + x + ",height=" + y + " ,top=0,left=0");
}

function woot() {
    document.write("test");
}

function closewindow() {
    document.close();
}

