// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


var w = window;

function openWin(url) {
  if ((w == window) || w.closed) { w = open(url,"study","width=750,height=600,scrollbars=yes,resizable=yes"); }
  else {  w.focus(); w = open(url,"study","width=750,height=600,scrollbars=yes,resizable=yes");  }
  return(false);
}


