function getIEVersionNumber() {
    var ua = navigator.userAgent;
    var MSIEOffset = ua.indexOf("MSIE ");

    if (MSIEOffset == -1) {
        return 0;
    } else {
        return parseFloat(ua.substring(MSIEOffset + 5, ua.indexOf(";", MSIEOffset)));
    }
}

function question(text) {
	if (confirm(text)) {
		location.href="http://www.microsoft.com/hun/windows/downloads/ie/getitnow.mspx";
	} else {
	}
}

if (getIEVersionNumber() <= 6 && getIEVersionNumber() != 0) {
	if (navigator.userLanguage == 'hu') {
		question('Az Ön által használt böngésző elavult. Az oldal Internet Explorer 7-nél régebbi böngésző alá nincsen optimalizálva.\n - Ha le szeretné tölteni az Internet Explorer legfrissebb változatát kattintson az "OK" gombra.\n - A "Mégse" gombra kattintva tovább folytatódik a weboldal betöltése.');
	} else {
		question('Your browser is outdated. The page is not optimized for browsers older than Internet Explorer 7. If you would like to download the latest version of Internet Explorer please click OK. Click on Cancel to continue loading the page.');
	}
}
