
function show_news() {
  var w = window;
  w.news_url = 'http://news.dpe.net/cgi-bin/ad.cgi?' +
                    'news_client=' + w.news_client.toLowerCase() ;
  w.news_width = '750';
  w.news_height= '100';
  w.news_frameborder= '0';
  document.write('<ifr' + 'ame' +
                  ' width=' + w.news_width +
                  ' height=' + w.news_height +
                  ' frameborder=' + w.news_frameborder +
                  ' src=' + w.news_url +
                  ' marginwidth=0' +
                  ' marginheight=0' +
                  ' vspace=0' +
                  ' hspace=0' +
                  ' allowtransparency=true' +
                  ' scrolling=no></ifr' + 'ame>');
  w.news_frameborder = null;

}

show_news();

