function vote (url) {
	new_window = window.open(url, "Umfrage", "width=200,height=100,status=no,scrollbars=no,resizable=no");
}
function autokill () {
setTimeout("close()", 5000);
}

function screenshot (url) {
	new_window = window.open(url, "Screenshot", "width=900,height=480,status=no,scrollbars=no,resizable=no");
}

function screenshot_list (url) {
	new_window = window.open(url, "Screenshot", "width=900,height=480,status=no,scrollbars=no,resizable=no");
}

function set_window() {
    if (document.getElementById) {
        var hoehe = document.getElementById("bottom").offsetTop + 70;
            window.resizeTo( 900 , hoehe);
    }
}  