
// --------------------------------------------------------//
//INPUT:
//OUTPUT:
//PURPOSE:
function openWin(URL, nm, w, h)
{
  aWindow=window.open(URL, nm, "toolbar=no,width="+w+",height="+h+",status=yes,scrollbars=yes,resize=no,menubar=no");
  if (!aWindow.opener){ aWindow.opener=self; } 
}

function openNew(URL)
{
  newWin=window.open(URL, 'newWin');
  if (!newWin.opener){ newWin.opener=self; } 
}

if(navigator.userAgent.indexOf('MSIE') != -1){ var is_ie = true; }
if(navigator.userAgent.indexOf('Gecko') != -1){ var is_gecko = true; }
if(navigator.userAgent.indexOf('mac') != -1){ var is_mac = true; }


