// Displays the current date in the place where the function is called.
function WriteDate() {
	var arrMonths = new Array("Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie");
	var todayDate = new Date();
	document.write(todayDate.getDate() + ' ' + arrMonths[todayDate.getMonth()] + ' ' + todayDate.getFullYear());
}


function popup(image,width,height,titlu) 
{
cond1="width="+(width)+"";
cond2="height="+(height)+"";
var s1 ="<TITLE>"+titlu+"</TITLE><LINK href='dresaj.css' type=text/css rel=stylesheet>";
var s2 ="<body bgcolor=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><CENTER><IMG SRC='"+image+"' BORDER=0 ></CENTER></body>";
x=screen.availWidth/2-width/2;
y=screen.availHeight/2-height/2;
ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2+",top="+y+",left="+x);
ImageWindow.document.write(s1+s2);
ImageWindow.document.close();
}


/*
function popup(image,width,height,titlu) 
{
if (width==0) cond1=" ";
else cond1="width="+(width)+"";
if (height==0) {cond2=" "};
else {cond2="height="+(height)+""};
var s1 ="<TITLE>"+titlu+"</TITLE><LINK href='dresaj.css' type=text/css rel=stylesheet>";
var s2 ="<body bgcolor=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><CENTER><IMG SRC='"+image+"' BORDER=0 ></CENTER></body>";
x=screen.availWidth/2-width/2;
y=screen.availHeight/2-height/2;
ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2+",top="+y+",left="+x);
ImageWindow.document.write(s1+s2);
ImageWindow.document.close();
}
*/
