function picture_popup(url,width,height,title,centered)
{
	var w = 480, h = 340;
   	w = screen.availWidth;
   	h = screen.availHeight;

	var leftPos = (w-width)/2;
	var topPos =  (h-height)/2;

	handle=window.open('about:blank','imagewin','menubar=no,scrollbars=no,status=no,location=no,toolbar=no,resizable=no,width='+width+',height='+height);
	handle.document.open();
	handle.document.write('<html><head><title>'+title+'<\/title><\/head><body style="margin: 0px"><img src="'+url+'" /><\/body><\/html>');
	handle.document.close();
	if (centered=="centered") handle.moveTo(leftPos,topPos);
	handle.focus();
}
