function banner_rotator()
{
<!-- Begin
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
	var result = Math.ceil(rnd()*number);
	if (!result)result++;
        return result
};
var ad_cnt1 = 5;
var ad1 = rand(ad_cnt1);
var link1;
var adBanner1;
var width1
var height1
if (ad1==1) {
adBanner1="images/tw_07.jpg";
width1="308";
height1="155";
alt1="Your one stop solution to waste and its management";
}
if (ad1==2) {
adBanner1="images/tw_07_2.jpg";
width1="308";
height1="155";
alt1="The world is changing very fast. Big will not beat small anymore. It will be the fast beating the slow.";
}
if (ad1==3) {
adBanner1="images/tw_07_3.jpg";
width1="308";
height1="155";
alt1="You can't do today's job with yesterday's methods and be in business tomorrow.";
}
if (ad1==4) {
adBanner1="images/tw_07_4.jpg";
width1="308";
height1="155";
alt1="It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.";
}
if (ad1==5) {
adBanner1="images/tw_07_5.jpg";
width1="308";
height1="155";
alt1="If everyone is thinking alike, then somebody isn't thinking.";
}
document.write('<center><img src="' + adBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '">');
document.write('</center>');
// End -->
}