function MM_callJS(jsStr) {
  return eval(jsStr)
}
function messageWindow(title, src)
{
  var width="680", height="560";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+title+'</title></head>';
  var body = '<center><p><img border=1 src=../img/'+src+'><form><input type="button" value="   Zatvori   " onClick="self.close()"></form>';
  msgWindow.document.write(head + body);
}
