function productRedirect(type, id) {
	if(type==1) {
		location.href="/common/book.jsp?productID="+id;
	}
	if(type==2) {
		location.href="/common/kids.jsp?productID="+id;
	}
	if(type==3) {
		location.href="/common/magazine.jsp?productID="+id;
	}
	if(type==5) {
		location.href="/common/videoDetail.jsp?productID="+id;
	}
	if(type==6) {
		location.href="/common/bookPackage.jsp?productID="+id;
	}
}