
<!--
 
var windowSecWin;
 
function showsecWin(winurl, winwidth, winheight)
{
  if (winurl == '') {return;}
 
  winheight = winheight*1;
  winwidth  = winwidth*1;
 
  maxheight = screen.height-130;
  maxwidth  = screen.width-30;
 
  if (winheight > maxheight) {winheight = maxheight};
  if (winwidth > maxwidth) {winwidth = maxwidth};
 
  openLeft   = 0;
  openTop    = 0;
  openHeight = winheight;
  openWidth  = winwidth;
  openName   = 'secWin';
//  openSpecs  = 'width=' + openWidth + ',height=' + openHeight + ',toolbar=no,scrollbars=yes,menubar=no,resizable=yes,left=' + openLeft + ',top=' + openTop;
  openSpecs  = 'width=' + openWidth + ',height=' + openHeight + ',toolbar=no,scrollbars=yes,menubar=no,status=yes,resizable=yes,left=' + openLeft + ',top=' + openTop;
  openURL    = winurl;
 
  windowSecWin = window.open(openURL,openName,openSpecs);
  windowSecWin.focus();
}
 
function closeWin()
{
  if (windowSecWin) { if (!windowSecWin.closed) {windowSecWin.close();} }
}
 
//-->
