function confirmLocation(location,title)
{
	var answer = confirm(title);
	if (answer == true)
	{
		document.location.href = location;
	}
}

