function w(url)
{
    window.open(url, "page", "menubar=yes, location=yes, status=yes, toolbar=no, scrollbars=yes, resizable=yes");
    return false;
}

function wf(url, width, height)
{
	width += 50; height += 50;
	window.open(url, 'foto', 'width='+width+', height='+height+', toolbar=no, location=no, resizable=yes, scrollbars=yes, top=100, left=100');
	return false; 
}

function wup(uri)
{
    window.open(uri, "uploader", "width=400, height=450, menubar=no, location=no, status=no, toolbar=no, scrollbars=yes, resizable=yes,left=150,top=150");
    return false;
}

// ankety
function set_poll(poll_id)
{
    var el = document.getElementById('poll');
    el.value = poll_id;
}

function send_poll()
{
    var el = document.getElementById('pollform');
    el.submit();

    return true;
}


