function OpenWindow(url, w, h)
{
  x = (screen.width / 2) - (w / 2);
  y = (screen.height / 2) - (h / 2);
  features = "menubar=false,width=" + w + ",height=" + h + ",location=false,left=" + x + ",top=" + y;
  window.open(url, "DCPOPUP", features);
} 

function OpenPhotos(dir)
{
  w = 535;
  h = 393;
  x = (screen.width / 2) - (w / 2);
  y = (screen.height / 2) - (h / 2);
  features = "menubar=false,width=" + w + ",height=" + h + ",location=false,left=" + x + ",top=" + y;
  window.open("fotos.php?pdir=" + dir, "DCPOPUP", features);
} 

function rightClick() 
{
  if (event.button==2||event.button==3) 
    oncontextmenu='return false';
}
document.onmousedown = rightClick;
document.oncontextmenu = new Function("return false;");

SetStatus(); 
function SetStatus()
{
  window.status = "";
  setTimeout("SetStatus()", 1);
}