function autolink() {
	shop_name   = new Array();
	shop_banner = new Array();
	shop_url    = new Array();
	var end_count = 0,list_count = 0;
	list_tbl = list.split(",");
	for ( i = 0; i < (list_tbl.length / 3); i++ ) {
		shop_name  [i] = list_tbl[list_count];
		shop_banner[i] = list_tbl[list_count + 1];
		shop_url[i] = list_tbl[list_count + 2];
		list_count += 3;
	}
	var check = new Array(shop_name.length);
	for ( i = 0; i < check.length; i++) {
		check[i] = false;
	} 
	document.write("<table " + table_option);

	for ( j = shop_name.length / rows; j > 0; j--) {
		document.write("<tr>");
		
		for ( i = 0; i < rows; i++) {
			if ( end_count < shop_name.length ) {
			document.write("<td bgcolor='#FFFFFF'>");
			do {
				var id = Math.floor(Math.random() * shop_name.length);
			} while ( check[id] == true );
			check[id] = true;
			document.write("<table border='0' cellspacing='0' cellpadding='0' class='j10' width='" + width +"'><tr>");
			document.write("<td align='center' style='padding:5px 3px 1px;'><a href='" + shop_url[id] + "' target='_blank'>" + shop_banner[id] + "</a></td>");
			document.write("</tr><tr>");
			document.write("<td align='center'><a href='" + shop_url[id] + "' target='_blank'>" + shop_name[id] +"</a></td>");
			document.write("</tr></table>");
			end_count++;
			document.write("</td>");
			}
		}
		document.write("</tr>");
	}
	document.write("</table>");
}
