function confirmbox(label,link)
	{
	if(confirm(label))
		{
		location.href=link;
		}
	}

