function showpage(n){
	var str;
	var page = new Array(9);
	page[0] = "<a href='products.html'>1</a>";
	for (i=1;i<page.length;i++){
		page[i] = "<a href='products" + (i+1) + ".html'>" + (i+1) + "</a>";
	}
	page[n-1] = "<font color=green>"+n+"</font>";
	str = "<table width=450><tr><td align=right><img src=i/point.gif width=11 height=11> Page :<b>";
	for (i=0;i<page.length;i++){
		str = str + "&nbsp; " + page[i];
	}
	str = str + "</b></td></tr></table>";
	document.write(str);
}