function NewWindow( nWidth, nHeight, strURL )
{
winBox = window.open(
strURL,
'winBox',
'scrollbars=yes,toolbar=no,resizable=yes,width=' + nWidth + ',height=' + nHeight);

if ( navigator.appName == 'Netscape' )
{
winBox.focus();
}
}




