function fdConfirmAction(message, url) {
	if (confirm(message)) {
		location.href = url;
	}
}

function fdOpenWindow(url, name, width, height) {
	return window.open(url, name, 'width='+width+',height='+height+',scrollbars=1');
}