<!--hiding
var months=new Array(12);
months[0]="January";
months[1]="February";
months[2]="March";
months[3]="April";
months[4]="May";
months[5]="June";
months[6]="July";
months[7]="August";
months[8]="September";
months[9]="Octomber";
months[10]="November";
months[11]="December";
var d=new Date();
document.write('<span class="date">');
document.write(d.getFullYear());
document.write(" ");
document.write(months[d.getMonth()]);
document.write(", ");
document.write(d.getDate());
document.write('</span>');
document.write(' <br /><span class="flags"><a href="http://www.mures.ro/">home</a>');
document.write(' &nbsp;<a href="http://www.mures.ro/index.php"><img src="http://www.mures.ro/images/ro.gif" width="20" height="10" /></a>');
document.write(' &nbsp;<a href=http://www.mures.ro/article.php/Tortenelmi-bevezeto/213/"><img src="http://www.mures.ro/images/hu.gif" width="20" height="10" /></a></span>');
<!--end hiding-->
