function LocationSelete()
{
	var url=location.href.split("\/");
    var  urlstring=url[url.length-1];

	var a = ["product.htm","product1.htm","product2.htm","product4.htm","product5.htm","product6.htm","product7.htm","product8.htm","product9.htm","product10.htm"];
	var b=["第1页","第2页","第3页","第4页","第5页","第6页","第7页","第8页","第9页","第10页"];
	for(var b1 in  a)
	{
		if(urlstring!=a[b1])
		{
			document.write("<a href=\""+a[b1]+"\">"+b[b1]+"</a>&nbsp;&nbsp;");
		}
		else
		{
			document.write(b[b1]+"&nbsp;&nbsp;");
		}

	}
}

