function ChangeWGPage( theField )
{
theValue = ""; 

for ( i = 0; i < theField.options.length; i++ ) 
  {
  if ( theField.options[i].selected ) 
    {
      theValue += theField.options[i].value ;
     break ;
    }
  }

if ( theValue != "ignore" )
{		
window.open( '/Sectors/ICT/ICTDocLib4.nsf/vLookupHTML/' + theValue + '?OpenDocument' , '_self' )
}
return( true ) ;
}