var win = null;
function popUp(URL,w,h) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var winw = w;
  var winh = h;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + winh + ',';
  settings += 'width=' + winw + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += 'menubar=0,location=0,resizable=0,status=0,titlebar=1,directories=0,toolbar=0,menubar=0,scrollbars=1';
  win = window.open(URL,'blank',settings);
  win.window.focus();
  return true;
}



function popUpPhoto(url,w,h) {
var winl = (screen.width-w)-40;
var wint = 40;
window.open(url, '', 'top='+wint+',left='+winl+',location=0,resizable=0,status=0,titlebar=1,directories=0,toolbar=0,menubar=0,scrollbars=0,width='+w+',height='+h);
        return false;
}

var win = null;
function popUpMovie(URL,w,h) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  win = window.open(URL,'',settings);
  win.window.focus();
  return true;
}


function link() {
}

