function confirmLink(theLink, confirmMsg)
{
	// Confirmation is not required in the configuration file
	// or browser is Opera (crappy js implementation)
	if (confirmMsg == '' || typeof(window.opera) != 'undefined')
			return true;

	var is_confirmed = confirm(confirmMsg);
	if (is_confirmed)
		theLink.href += '&is_confirmed=1';

  return is_confirmed;
}

try {
window.on("load", function(){
	var colors = ["red", "green", "blue"];
	var blinks = $$(".blink");
	blinks.each("set", "xColor", "0");
	var f = function() {
		blinks.each(function(element) {
			element.xColor += 1;
			if (element.xColor >= colors.length) element.xColor = 0;
			element.style.color = colors[element.xColor];
		});
	};
	f.periodical(100);
});
} catch(e) {}