// 函数

function getId()
{
	var u = window.location;
	u = String(u);
	var id = u.slice(u.length - 6, u.length - 5);
	return id;
}