<!--hiding
var months=new Array(12);
months[0]="Ianuarie";
months[1]="Februarie";
months[2]="Martie";
months[3]="Aprilie";
months[4]="Mai";
months[5]="Iunie";
months[6]="Iulie";
months[7]="August";
months[8]="Septembrie";
months[9]="Octombrie";
months[10]="Noiembrie";
months[11]="Decembrie";
var d=new Date();
document.write('<span class="date">');
document.write(d.getDate());
document.write(" ");
document.write(months[d.getMonth()]);
document.write(" ");
document.write(d.getFullYear());
document.write('</span>');
document.write('<br /><span class="flags"><a href="http://www.mures.ro/">prima pagina</a>');
document.write('<a href="http://www.mures.ro/article.php/The-history-of-Tirgu-Mures/113/"><img src="http://www.mures.ro/images/en.gif" width="20" height="10" /></a>');
document.write('<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-->