//Footer bal oldala

// Formázott dátum előállítása az utolsó módosításról
		if (Date.parse(document.lastModified) != 0) {
		  var modiDate = new Date(document.lastModified);
		  var modiYear = modiDate.getYear();
		  modiYear = (modiYear < 2000) ? modiYear + 1900 : modiYear;
		  var monthName = new Array("January", "February", "March", "April", "May", 
		   "June", "July", "August", "September", "October", "November", "December");
		}

document.write('<DIV id="footerbox">'); /* Footer háttere */

document.write('<div id="footertext_left">');  /*Footer szövege */
document.write('Last updated: '+" " + modiDate.getDate()+" " + monthName[modiDate.getMonth()] + " " + modiYear);
document.write('<br>');
document.write('© <a href="http://www.mrtt.hu">Hungarian Regional Science Association</a>'); 


//Footer jobb oldala

document.write('<div id="footertext_right">');
document.write('Optimized for: Internet Explorer and Netscape browsers');
document.write('<br>');
document.write('Webmaster: <a href="mailto:varadi@rkk.hu">György Váradi</a>');
document.write('</div>');
document.write('</div>');
document.write('</div>');


