<!--
// Resizeble popup
// functia de deschidere a ferestrei :
function openwind(file_link, window_name, width, height, scrollbar) {
	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="+scrollbar;
	
	win = window.open(file_link,window_name,parameters);
	win.window.focus();
}

// se face deschiderea ferestrei :
function openWindow(img, folder) {
	var imgPath = img;
	var imgWidth = 500;
	var imgHeight = 500;
	
	openwind('_popup.php?img='+imgPath, imgWidth, imgHeight, 'no');
}
//-->