function win_openOld(form)
{
	self.name = "main";
	window.open(form,"", "scrollbars=no,height=540,width=440,left=60,top=60");
}

function win_open(form) {
  popupWin = window.open(form, 'popupWin', 'status=no,scrollbars=no,resizable=no,width=440,height=540,left=25,top=25');
  //window.top.name = 'opener';
  popupWin.focus();
}

function win_open2(form) {
  popupWin = window.open(form, 'popupWin', 'status=no,scrollbars=yes,resizable=no,width=458,height=540,left=25,top=25');
  //window.top.name = 'opener';
  popupWin.focus();
}

function openResource(geURL) {
  popupWin = window.open(geURL, 'popupWin', 'status=no,scrollbars,resizable=yes,width=640,height=600,left=25,top=25');
  //window.top.name = 'popupWin';
  popupWin.focus();
}

function openBio(geURL) {
  popupWin = window.open(geURL, 'popupWin', 'status=yes,scrollbars,resizable=yes,width=678,height=500,left=25,top=25');
  //window.top.name = 'opener';
  popupWin.focus();
}

function openCal(geURL) {
  popupWin = window.open(geURL, 'popupWin', 'status=no,scrollbars=no,resizable=yes,width=800,height=600,left=25,top=25');
  //window.top.name = 'opener';
  popupWin.focus();
}