function confirm_delete($url)
{
	var is_confirmed = confirm('Ste prepričani, da želite zbrisati vnos?');
	if (is_confirmed) {
		window.location = $url;
	}
}

function confirm_action($url, $msg)
{
	var is_confirmed = confirm($msg);
	if (is_confirmed) {
		window.location = $url;
	}
}

function openPop(url, width, height, s)
{
	x = (640 - width)/2;
	y = (480 - height)/2;
	if (screen)	{
		x = (screen.availWidth - width) / 2;
		y = (screen.availHeight - height) / 2;
	}
	if (navigator.appName == "Netscape")
		height = height + 50;
	window.open(url, '', 'scrollbars=' + s + ',status=0,resizable=0,width=' + width + ',height=' + height + ',screenX=' + x + ',screenY=' + y + ',top=' + y + ',left=' + x);
}
