var newwindow;
function pop(url,x,y)
{
  nastav=
  "toolbar=no,location=no,directories=no,"+
  "status=no,menubar=no,scrollbars=no,"+
  "resizable=yes,width="+x+",height="+y;

	newwindow=window.open(url,'drevodomy',nastav);
	if (window.focus) {newwindow.focus()}
}

function otazka(url) 
{      
  if (confirm('Vykonat akciu?\nOK = ano, CANCEL = nie')) 
    location = url;
  else
    alert("akcia bola ukoncena !");
}
