function addPageOnloadEvent(fn)
{
	$().ready(fn);
}

function fixFlashIssues()
{
	var backup = window.__flash__removeCallback;
	window.__flash__removeCallback = function (instance, name) { try {backup(instance, name)} catch (x){} }; 	
}

/** renders an obfuscated email adress */
function showEmail(part3, part1, part2, text)
{
	if (text == undefined)
		text = part1+'@'+part2+'.'+part3;
		
	document.write('<a href="mailto:'+part1+'@'+part2+'.'+part3+'">'+text+'</a>');
}

