
function openFoto(Xx,Yy,Idd){
	var width = Xx;
	var height = Yy;
	var l = ( screen.width - width )/2;
	var t = ( screen.height - height )/2 - 20;
	url = "/image.php?id="+Idd;
	window.open( url, "_blank", "status=0,toolbar=0,scrollbars=0,resizable=0,left="+l+",top="+t+",width="+width+",height="+height );
}

function openFoto2(Xx,Yy,Idd){
	var width = Xx;
	var height = Yy;
	var l = ( screen.width - width )/2;
	var t = ( screen.height - height )/2 - 20;
	url = "/image.php?adv=1&id="+Idd;
	window.open( url, "_blank", "status=0,toolbar=0,scrollbars=0,resizable=0,left="+l+",top="+t+",width="+width+",height="+height );
}

