var months=new Array(13);
months[1]="Ianuarie";
months[2]="Februarie";
months[3]="Martie";
months[4]="Aprilie";
months[5]="Mai";
months[6]="Iunie";
months[7]="Iulie";
months[8]="August";
months[9]="Septembrie";
months[10]="Octombrie";
months[11]="Noiembrie";
months[12]="Decembrie";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
year = year + 1900; 

document.write(lmonth + " " + date + ", " + year );

function openpup(url)
{
	open(url,  "premiu" , "scrollbars,screenX=300,screenY=150,width=420,height=300,innerwidth=420,innerheight=300")
}
