//------------------------------------------------------------------------------
// fnNewWindow
// Create a new browser window.
//------------------------------------------------------------------------------

function fnNewWindow( sURL, sName ) {
   var objNewWindow = window.open( sURL, sName );
   // If window.focus supported then call it to give focus to new window.
	if ( window.focus ) {
      objNewWindow.focus();
   }
}

//------------------------------------------------------------------------------
// fnTrim
// Trim leading/trailing whitespace off string
//------------------------------------------------------------------------------

function fnTrim( sValue ) {
  return sValue.replace( /^\s+|\s+$/g, '' );
}

