function exitBanners(bannersAction, windowTitle, windowWidth, windowHeight, bannerAlttext, bannerUrl, bannerSrc) {
  if (bannersAction) {
    wndb = open('', windowTitle, 'width='+windowWidth+',height='+windowHeight+',scrollbars=no,resizable=no,status=no,toolbar=no,location=no,menubar=no');
    wndb.document.write('<html><head><title>'+windowTitle+'</title></head>');
    wndb.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
    wndb.document.write('<a href="'+bannerUrl+'" target="_blank" title="'+bannerAlttext+'" onClick="window.parent.close()">');
    wndb.document.write('<img src="'+bannerSrc+'" border=0>');
    wndb.document.write('</a>');
    wndb.document.write('</body>');
    wndb.document.write('</html>');
  }
}