
var nWin;
function openWin(sURL,sName,nWidth,nHeight)
{
  nWin = window.open(sURL,sName, 'width='+nWidth+',height='+nHeight+',scrollbars=yes,resizable=yes,status=no,location=yes');
  nWin.focus();
  }


var nWin;
function openWinno(sURL,sName,nWidth,nHeight)
{
  nWin = window.open(sURL,sName, 'width='+nWidth+',height='+nHeight+',scrollbars=no,resizable=no,status=no,location=yes');
  nWin.focus();
  }
