<!--
var infowin = null;

function newMCMPopWin(url,w,h)
{
  infowin = window.open("","","toolbar=no,location=no,scrollbars=yes,resizable=no,top=20,left=20,width=" + w + ",height=" + h);
  if (infowin != null)
  {
    infowin.location.href = url;
// is the window.focus method supported by this verison of javascript
// if so, then do it.
    if (window.focus)
    {
       infowin.focus();
    }
  }
// return true;
}

function closePopWin()
{
  if (infowin != null && infowin.open) infowin.close();
// return true;
}                                           

var NewWindow;
// this function tests to see if the new window is open and if it is it brings it to the front

function test_for_newwindow() {
	if (!NewWindow || NewWindow.closed) return;
	else 
		NewWindow.focus();
}
-->