<!--
function redirect(url)
{
	if (url)
	window.location = url;
}

function showTab(tabId)
{
	document.getElementById(tabId).style.display = "block";
}

function doSubmit(formId, url)
{
	document.getElementById('changeUrl').value = url;
	document.getElementById(formId).submit();
}

function confirmDelete(msg)
{
	var confirmation = confirm(msg)
	if (confirmation)
	return true;
	else
	return false;
}
//-->
