function my_confirm(to, what) {
  if (confirm(what))
    document.location=to;
}
var foto_windows = new Array();
function open_foto(url, winname, width, height) {
  foto_windows[foto_windows.length] = window.open(url,winname,'height='+height+',width='+width+',resizable=0,scrollbars=no,menubar=no,status=no');^
  for(i = 0; foto_windows.length > i; i++) {
    if(!foto_windows[i].closed)
      foto_windows[i].focus();
  }
}
