function confirmLink(msg, tLink)
{
	var res = confirm(msg);
	if (res)
		window.location=tLink;
}