var win = null;
function popUpBio(URL) {
  var winl = (screen.width-575)/2;
  var wint = (screen.height-475)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=475,';
  settings += 'width=575,';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += 'location=no,status=yes,resizable=no,scrollbars=yes, toolbar=yes,menubar=no';
  win = window.open(URL,'bio_window',settings);
  win.window.focus();
  return false;
}

var win = null;
function popUpPhoto(URL,w,h) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var winw = w+20;
  var winh = h+70;
  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=0';
  win = window.open(URL,'blank',settings);
  win.window.focus();
  return true;
}

var win = null;
function popUpMovie(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=0';
  win = window.open(URL,'moviewindow',settings);
  win.window.focus();
  return true;
}

function targetopener(mylink,closeme,closeonly)
{
if (! (window.focus && window.opener))return true;
window.opener.focus();
if (! closeonly)window.opener.location.href=mylink.href;
if (closeme)window.close();
return false;
}


function link() {
}