function MM_openBrWindow2(theURL) { //v2.0
	winName="";
//	features="scrollbars=no,resizable=no,width=50,height=50";
	w = 800;
	h = 650;
	sw = screen.width;
	sh = screen.height;
	l = (sw - w) / 2;
	t = (sh - h) / 2;
//	alert('width='+w+',height='+h+',top='+t+',left='+l+',scrollbars=no,resizable=no');
	window.open(theURL, winName, 'width='+w+',height='+h+',top='+t+',left='+l+',scrollbars=no,resizable=no');	
//	window.open(theURL,winName,features);
return false;
}

function mareste(j,i)
{
	MM_openBrWindow2('/image_popup.php?id_user='+j+'&id_poza='+i);
}

function show_hide(id)
{	
	if (document.getElementById(id).style.display=="none")
		document.getElementById(id).style.display="block";
	else document.getElementById(id).style.display="none";
}