function popup(url, width, height) {
	border = 20;
	width += border * 2;
	height += border * 2;

    opt = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	gw = window.open("", "", opt + ',width=' + width + ',height=' + height);
    gw.focus();
    gw.document.open();
	with(gw) {
        document.write('<html><head>');
        document.write('<title>KOSATEC Computer</title>');
        document.write('</head>');
        document.write('<body style="margin:0; padding:0; cursor:hand;" onclick="window.close();">');
        document.write('<div style="padding:'+border+'px"><img border="0" src="/web/'+url+'" alt=""></div>');
        document.write('</body></html>');
	}
    return;
}

function confirmAction(text) {
	check = confirm(text);
	if (check === true) return true;
	else return false;
}

function switchVis(id) {
	if (document.getElementById(id).style.display != 'none') document.getElementById(id).style.display='none';
	else document.getElementById(id).style.display='block';
}