function confirmLink(link,question)
{
	if (confirm(question))
	{
		document.location.href = link;	
	}
}
