function bannerRotate(){
	// init

	function BannerObj(src,alt,url,blank,popup,width,height,name,parameter){
		this.src    = src;// image source (str)
		this.alt    = alt;// string of alt att. (str)
		this.url    = url;// url for link (str)
		this.blank  = blank;// is blank window or not (bool)
		this.popup  = popup;// is popup window or not (bool)
		this.width  = width;// width of popup window (int)
		this.height = height;// height of popup window (int)
		this.name   = name;// name of popup window (str)
		this.param  = parameter// parmeter of popup window (str)

		return this;
	}

	var n;
	var str = "";
	var banner = new Array();


	// data fork



//banner[banner.length] = new BannerObj(
//"/img/gelsprinter/eco_banner.jpg",
//"GELSPRINTER - click here for more information",
//"http://gelsprinter.com/",
//false,
//true,
//820,
//700,
//"GelSprinter",

//"scrollbars=yes,resizable=yes"
//	);


banner[banner.length] = new BannerObj(
"/img/home_feature_NY_e02.jpg",
"TIMES&nbsp;SQUARE,&nbsp;NYC&nbsp;100%&nbsp;Eco-Powered&nbsp;Billboard!",
"http://www.ricoh-eco.com/",
false,
true,
920,
700,
"ecopowered",

"scrollbars=yes,resizable=yes"
	);


banner[banner.length] = new BannerObj(
"/img/home_feature_cx1.jpg",
"CX1",
"/r_dc/index.html?cd=dcglobal_top",
false,
false,
820,
700,
"cx1",

"scrollbars=yes,resizable=yes"
	);


banner[banner.length] = new BannerObj(
"/img/gelsprinter/magic_banner.jpg",
"GELSPRINTER - click here for more information",
"http://gelsprinter.com/",
false,
true,
820,
700,
"GelSprinter",

"scrollbars=yes,resizable=yes"
	);


	// select sequence

	n = Math.floor(Math.random()*(banner.length));


	

	if(banner[n].popup == true){
		str += "<a href='' onClick=\"window.open('";
		str += banner[n].url;
		str += "', '";
		str += banner[n].name;
		str += "', 'width=";
		str += banner[n].width;
		str += ", height=";
		str += banner[n].height;
		str += ","
		str += banner[n].param;
		str += "'); return false;\">";

	} else {
		str += "<a href='";
		str += banner[n].url;
		str += "'>";
	}

	str += "<img src=";
	str += banner[n].src;
	str += " width=200 height=144 alt=";
	str += banner[n].alt;
	str += " border=0></a>";

	//alert (str);// This is for showing link for debug mode!

	document.open();
	document.write(str);
	document.close();
}




/*
banner rotate script ver. 0.9.3
it need to optimize.
2004.12.09
*/
