// functie de deschidere fereastra noua :
function openwind(pict_link,width,height){
	var parameters;
	var winx = (screen.width - width) / 2;
    var winy = (screen.height - height) / 2;
	
	parameters = "width="+width+", height="+height+", top="+winy+", left="+winx+", status=no, scrollbars=no";
	
	win = window.open(pict_link,'view',parameters);
	win.window.focus();
}