function today(){
	var now = new Date();
	var days = new Array('Duminică','Luni','Marți','Miercuri','Joi','Vineri','Sâmbătă');
	var months = new Array('Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie','Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie');
	var date = ((now.getDate()<10) ? "" : "")+ now.getDate();
	function y2k(number){return (number < 1000) ? number + 1900 : number;}
	today =  days[now.getDay()] + ", " + date + " "+ months[now.getMonth()] + ", "  + (y2k(now.getYear())) ;
	document.write('<font class=data>'+today+'</font>');
}

function window_new( kontakt, title )
{
	var thisWindow;
	thisWindow = window.open(kontakt,title,"width=780,height=550,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}
function window_picture( newsitem, x, y, title )
{
	var thisWindow;
	thisWindow = window.open(newsitem,title,"width="+x+",height="+y+",scrollbars=no,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-x)/2,(screen.height-y)/3);
 	thisWindow.window.focus();
}