﻿function random_link(){
var window_text=new Array()

window_text[1]= "彩妝"
window_text[2]= "美容"
window_text[3]= "保養"
window_text[4]= "女性服飾"
window_text[5]= "男性服飾"
window_text[6]= "電腦軟體"
window_text[7]= "電腦硬體"
window_text[8]= "PDA"
window_text[9]= "數位相機"
window_text[10]="攝影"
window_text[11]="手機"
window_text[12]="手錶"
window_text[13]="首飾"
window_text[14]="電玩"
window_text[15]="玩具"
window_text[16]="模型"
window_text[17]="音樂"
window_text[18]="電影"
window_text[19]="收藏"
window_text[20]="偶像"
window_text[21]="圖書"
window_text[22]="雜誌"
window_text[23]="文具"
window_text[24]="房地產"
window_text[25]="汽車"
window_text[26]="機車"
window_text[27]="家電"
window_text[28]="園藝"
window_text[29]="嬰幼兒"
window_text[30]="孕婦"
window_text[31]="運動"
window_text[32]="休閒"
window_text[33]="旅遊"
window_text[34]="美食"
window_text[35]="名產"

var window_link=new Array()
window_link[1]= "http://hibid.hinet.net/street.jsp?cateid=1&layer=0"
window_link[2]= "http://hibid.hinet.net/street.jsp?cateid=1&layer=0"
window_link[3]= "http://hibid.hinet.net/street.jsp?cateid=1&layer=0"
window_link[4]= "http://hibid.hinet.net/street.jsp?cateid=274&layer=0"
window_link[5]= "http://hibid.hinet.net/street.jsp?cateid=626&layer=0"
window_link[6]= "http://hibid.hinet.net/street.jsp?cateid=925&layer=1"
window_link[7]= "http://hibid.hinet.net/street.jsp?cateid=730&layer=0"
window_link[8]= "http://hibid.hinet.net/street.jsp?cateid=937&layer=1"
window_link[9]= "http://hibid.hinet.net/street.jsp?cateid=974&layer=0"
window_link[10]="http://hibid.hinet.net/street.jsp?cateid=974&layer=0"
window_link[11]="http://hibid.hinet.net/street.jsp?cateid=1084&layer=0"
window_link[12]="http://hibid.hinet.net/street.jsp?cateid=1252&layer=1"
window_link[13]="http://hibid.hinet.net/street.jsp?cateid=1341&layer=1"
window_link[14]="http://hibid.hinet.net/street.jsp?cateid=1383&layer=0"
window_link[15]="http://hibid.hinet.net/street.jsp?cateid=1417&layer=0"
window_link[16]="http://hibid.hinet.net/street.jsp?cateid=1417&layer=0"
window_link[17]="http://hibid.hinet.net/street.jsp?cateid=1485&layer=0"
window_link[18]="http://hibid.hinet.net/street.jsp?cateid=1485&layer=0"
window_link[19]="http://hibid.hinet.net/street.jsp?cateid=2089&layer=0"
window_link[20]="http://hibid.hinet.net/street.jsp?cateid=2089&layer=0"
window_link[21]="http://hibid.hinet.net/street.jsp?cateid=1564&layer=1"
window_link[22]="http://hibid.hinet.net/street.jsp?cateid=1588&layer=1"
window_link[23]="http://hibid.hinet.net/street.jsp?cateid=1607&layer=1"
window_link[24]="http://hibid.hinet.net/street.jsp?cateid=2179&layer=0"
window_link[25]="http://hibid.hinet.net/street.jsp?cateid=2180&layer=1"
window_link[26]="http://hibid.hinet.net/street.jsp?cateid=2187&layer=1"
window_link[27]="http://hibid.hinet.net/street.jsp?cateid=1637&layer=0"
window_link[28]="http://hibid.hinet.net/street.jsp?cateid=1637&layer=0"
window_link[29]="http://hibid.hinet.net/street.jsp?cateid=1879&layer=0"
window_link[30]="http://hibid.hinet.net/street.jsp?cateid=1879&layer=0"
window_link[31]="http://hibid.hinet.net/street.jsp?cateid=2013&layer=0"
window_link[32]="http://hibid.hinet.net/street.jsp?cateid=2013&layer=0"
window_link[33]="http://hibid.hinet.net/street.jsp?cateid=2013&layer=0"
window_link[34]="http://hibid.hinet.net/street.jsp?cateid=2071&layer=0"
window_link[35]="http://hibid.hinet.net/street.jsp?cateid=2071&layer=0"

var number=new Array();
var flag=true;
var show=11;

var flag=true;
while (flag)
{
	flag=false;
	for (i=1;i<=show;i++) 
	{
		number[i]=Math.floor(Math.random()*(window_link.length-1))+1
		if (number[0]==0) 
		{
			flag=true;
			break;
		}
	}
	for (i=1;i<=show;i++)
	{
		for (j=1;j<i;j++)
		{
			if (number[j]==number[i])
			{
				flag=true;
				break;
			}
		}
	}
}

document.write('<table cellpadding="5"><tr><td>')
var j=1
for (j=1;j<=show;j++)
{
	var f=Math.floor(Math.random()*8)+10
	document.write('<a href="'+window_link[number[j]]+'" style="font-size:'+f+';color:#00'+(140-f*6)+'9D" style="white-space: nowrap">'+window_text[number[j]]+'</a><img src="images2/default_dot.gif" width="8" height="17">')
}
document.write('</td></tr></table>')
}
random_link()