/* UTF-8
2005-2009. Webelit Bt. - www.webelit.hu - info@webelit.hu
coder: Molnár György - utolsó mód.: 2007.08.31.
*/

// WHAT - What a Hypersuper Antispam Techology
// Anti-spam e-mailcímekhez
// Eredeti szerző: Bártházi András - http://weblabor.hu/cikkek/what
function whatCorrector() {
var replaces = 0;
	var alltags = document.all ? document.all.tags("*") : document.getElementsByTagName("*");
	for (i=0; i < alltags.length; i++) {
		if (alltags[i].className == 'whateffect') {
			while (alltags[i].innerHTML.indexOf('.'+'kukac.') != -1 && replaces < 10000) {
				alltags[i].innerHTML = alltags[i].innerHTML.replace('.'+'kukac.', String.fromCharCode(64));
				replaces++;
			}
			while (alltags[i].innerHTML.indexOf('.'+'pont.') != -1 && replaces < 10000) {
				alltags[i].innerHTML = alltags[i].innerHTML.replace('.'+'pont.', '.');
				replaces++;
			}
		}
	}
}
//Visszakérdezés
function kerdes() {
  var agree = confirm("Biztosan folytassuk?");
  if (agree) return true;
  else return false;
} 

