
function openPopup(uri, name, w, h) 
{
	var l = (screen.width-w)/2;
	var t = (screen.height-h)/2;
	var f = 'scrollbars=yes,left='+l+',top='+t;
  window.open(uri, name, f+',width='+w+',height='+h);
}
