// functie de deschidere fereastra noua fara scroll :
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();
}

// functie de deschidere fereastra noua cu scroll :
function openwindscroll(pict_link,width,height,name){
	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=yes";
	
	win = window.open(pict_link,name,parameters);
	win.window.focus();
}