<!--
function OW( url, width, height, options, name )  {
  if ( ! width ) width = 700;
  if ( ! height ) height = 475;
  if ( ! options ) options = "scrollbars=no,menubar=no,toolbar=no,location=no,status=no,resizable=no";
  if ( ! name ) name = "outsideSiteWindow";
  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}
function OW2( url, width, height, options, name )  {
  if ( ! width ) width = 650;
  if ( ! height ) height = 550;
  if ( ! options ) options = "scrollbars=no,menubar=no,toolbar=no,location=no,status=no,resizable=no";
  if ( ! name ) name = "outsideSiteWindow";
  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}
// -->
