function confirmAction( action, confirmText, targetURL )
{
	if( confirm( confirmText+'\n\n'+action ) ) {
		document.location = targetURL;
	}
}
