/*
    Copyright (C) 2005 Dr. Franz-Josef Huecker.   
    All Rights Reserved. -- ( fj@huecker.com ).
*/

function openBanner(url,wid,hei) {
 var banner = null;
 url = "/misc/x_pub/" +url;
 banner = window.open(url,'banner',"width="+ wid +",height="+ hei +",scrollbars=no,resizable=no,status=no,scrollbars=no,location=no,toolbar=no");
 if (banner) {
  banner.moveTo(screen.width/2-400,screen.height/2-300);
  banner.focus();
 }
};

/* End of script. */
